make a 2d array
dim myarray(60,40)
rem its really 61,41 but for sanity and clarity we skip the zero
location of the array
store the contents of the 2dimensional data into each array location.
for x = 1 to 60
for y = 1 to 40
myarray(x,y)= rnd(9)+1 :rem your data value eg 1 - 10
next x
next y
save the array using save array
rem use a zero regardless of created size if using classic
save array "lvlX.dat",myarray(0)
load it back in using load array
rem use a zero regardless of created size
load array "lvlX.dat",myarray(0)
undim arrays when you end your proggy or dont need to use them any more