ANY

Format

ANY( var )

Function

Arguments

var
The string, general purpose array, integer, or real number to be selected from.

Return value

Related

Version

Example

_array = ('Sakura','Mayura','Nekoko') // Assign a general purpose array
ANY( _array ) // "Mayura" is output (one of the array elements is output at random)

_str = 'Sakura,Mayura,Nekoko' // Assign a simple array
ANY( _str ) // "Nekoko" is output (one of the array elements is output at random)

LSO // The integer `2` is output (since "Nekoko" is element 2 of the array)