Hello everyone

Just wondering, is it possible to have an array take it's name from a string?
eg.
string$ = "array"
dim string$(10) < that would create an array called "array"
I know it sounds a little stupid and extremely pointless, But there is a reason ^.^ (everything below is kind of irrelevant, but I don't like asking for help without saying what I will use it for

)
I'm creating a terrain generator for a project i'm working on, I originally made it to work directly with matrixes, but now I'm editing it to use arrays, so I can save the arrays in files and load them separately to make objects(sing memblocks.) It will(eventualy >.<

be a procedural generator, so I'm saving it in "chunks" (64*64 blocks of the terrain). Right, so each chunk needs to be stored on a separate array, but I need to be able to access the data on an array, only knowing the position of the chunk in the entire terrain. For this my Idea was to label the arrays (chunk0000 ect...), but then I realized I could only get data from the arrays using the specific array name, but I need to be able to access it like this: "chunk"+str$(chunk_x)+str$(chunk_y)(x,y)
I'm sorry I can't explain it better than that >.<
anyway, when I realized that wouldn't work, I thought about only having one array (for the chunk that is being generated at that specific time), and whenever I need data from the other arrays load the datafile that it is saved to as a temporary array, like this:
open datafile to read 1,"saves\terrain1\chunk"+str(chunk_x)+str(chunk_y)+".bin"
load array from datafile ......
I got to this point and realized I could not load it to an array called "temp" , because I saved it as an array called "array"
I seriously can't get my head around this one, If anyone knows how to do what I said at the top, or if anyone knnows another way to solve this (without storing all the data as hidden matriexs and storing the matrix numbers in an array

) help would be greatly appreciated
Lewis
At least i try

http://img192.imageshack.us/img192/1571/errormessagepj.png