Is there an opportunity to create two dimensional Arrays with different lengths in the second dimension? For example like this:
[true] [true] [true]
[true]
Java does not have 2-dimensional arrays.
Java has 1-dimensional arrays whose elements can be any primitive or reference type - including other arrays.