E.g.: DIM ARR[10] 'DECLARES A 10 NUMBER ARRAY DIM AR$[5,4] 'DECLARES A 5 BY 4 MATRIX OF STRINGS DIM EMP[0] 'DECLARES AN EMPTY NUMERICAL ARRAY To reference the elements of the array, simply call the identifier and the element's position within brackets. Be aware that array position numbers start from 0 to the length of the array minus 1. E.g.: ARR[3]=12 'ASSIGNS 12 TO ARR SUB-ELEMENT 3