Calling target.array.First determines what the first value in the array is.
trg.array.First()
This function returns the first element in the array.
Sample
'---------- Start ----------
Function Start
trg.array.Add( 66 )
trg.array.Add( 77 )
trg.array.Add( 11 )
trg.Message( trg.array.First() )
End Function
See also