an array of classes is just like an array of ints, ie: int myInts[8];
that creates 8 ints, each seperate from the other. to access or set the value they contain you must do something like: myInts[2] = 3;

try and apply this to your situation