Just a variable that holds multiple values. DIM A[4] //create var 'A' with a size of 4. Array indexing starts at 0 so the total size is N-1. A[0]=1:A[1]=3:A[2]=7:A[3]=9 // Now if you did X=A[1]*A[2] X now equals 21.