STRING_ARRAY(Num)
Returns a string array of size Num
StringArray STRING_ARRAY(Integer Num)
Num - Integer value greater than zero. If it is not an integer type, it is implicitly converted to an integer type.
String array of size Num
> A = STRING_ARRAY(3)
> A[0] = "HELLO"
> A[1] = "WORLD"
> PRINT A
{ "HELLO", "WORLD", "" }