you can also delcared multi-demensionial arrays like that:
for example a 2D array {{1,2,3,5}, {6,7,8,9,10}}; this illustrates an important concept of Java. THERE ARE NO MUTLIDIMENSIONAL arrays. The work around is that you can have an array of arrays of data, which works rather the same way w/ the bonus that you can have ragged arrays.