Creating an array of arrays

Made it an array of a class. That seems to do what I needed.


class theClass
{
  int a,b,c,d,e;
}

theClass[] firstArray = theClass[3];
theClass[] secondArray = theClass[5];

setup()
{
  firstArray[0].a = 100;
  secondArray[1].b = 37;
}