reference:evaluator:arraycreate

ArrayCreate(
     [anything:el1],
     [anything:el2...]
)
array

Arguments

el1

Optional. The first element for the new array.

el2...

Optional. The second (and subsequent) elements for the new array.

Return value

New array.

Description

Creates a new array. If arguments are provided the array is initialised with those values.

Examples:

arr = ArrayCreate(1,2,3,5,8,13,21);

See also:
ArrayCopy
ArrayErase
ArrayGet
ArrayPop
ArrayPush
ArrayRev
ArraySet
ArraySort