I'm wondering how to start a Boolean array at 1 instead of 0.
so far the only thing i can think of is:
Boolean [] x = new Boolean[12]+ 1;
or
Boolean [] x= new Boolean[12 + 1];
and the top one does not compile while the bottom one just makes the length to 13