LOTUSSCRIPT LANGUAGE
Dim anArray() ReDim anArray(,1,2) ' Illegal comma at beginning of bounds list ReDim anArray(1,2,) ' Illegal comma at end of bounds list ReDim anArray(1,,2) ' Illegal comma immediately after another comma
Remove the misplaced comma.
See Also