How should I store a group of constant data of the same type?

UKHeliBob:
To access say the first bit of the third level you could use

boolean theBool = bitRead(theData[2, 0]);

The closing square bracket is placed wrong IMHO.

boolean theBool = bitRead(theData[2], 0);