DIM ARR[5] 'creates a numerical array with 5 elements FOR I=0 TO LEN(ARR)-1 ARR[I]=I+1 'the element at I position (all arrays start at 0 as a technical thing) will equal I+1 NEXT