Been researching this and really haven't found a solution. In JavaScript, I want to be able to save an array to another array that would contain the array name (savedArrayCreated) plus a number (1,2,3... etc.)
For example:
arrayCreated[]
Save the arrayCreated to: savedArrayCreated1
then go back and clear arrayCreated, populate it with new array numbers and:
Save the arrayCreated to: savedArrayCreated2
And so on.
So the number at the end of the savedArrayCreated field would increase and I would be able to create an array with that name/number combination.