is there a way to name a series of objects like so:
for (i=0; i<numberOfObjectsDesired; i++;) {
Object ("thisone"+i);
thisone+i = new Object();
}
such that thisone0, thisone1, thisone2, thisone3, ... etc are all unique instances of Objects