Well, a 1-dimensional (1d) array would be like:
DIM array(32)
Making an array with 32 indices
A 2D array would be like:
DIM array(32,32)
An array with 32x32 indices. If you've got any experience with spreadsheets, it's an idea to visualise a 2D array as a spreadsheet - more dimensions in the array might signify 'worksheets', like a 3D array:
DIM array(256,256,10)
Which would be like a spreadsheet with 256x256 cells, and 10 pages.
In Excel terms, cell A1 on worksheet 1 might be array(0,0,0).
Van-B
It's c**p being the only coder in the village.