-create an array: DIM arrayname[size] -example: DIM EXAMPLE[7] -access an array element: arrayname[index] -example: EXAMPLE[3]=12 PRINT EXAMPLE[3] (arrays start counting at 0, and the maximum value is 1 less than the size)