More about Array Indexes
lArray indexes can be any integral expression of type char, short, byte, or int
l
lIt is the programmer’s responsibility to make sure that an array index does not go out of bounds.  The index must be within the range 0 through the array’s length minus 1 
l
lUsing an index value outside this range throws an ArrayIndexOutOfBoundsException; prevent this error by using public instance variable length