Not "number of pages" but, DIM A[N] where N equals the number of elements. A[5] holds 5 separate data values. Arrays are useful and much more useful in loops. IE: If you do: FOR I=0 TO 4 A[I]=RND(10)+1 NEXT This will access each value in the array, A[0],A[1],A[2],A[3], and A[4]. And assign a random number 1-10 to each one.