public class ComplexArray{ public static void main(String[] args){ String[][][] Animals = {{{"Animals", "Minerals"},{"Cats", "Dogs", "Rats"},{"Lions", "Pugs", "Muskrats"}}}; System.out.println(Animals[0][1][1]); //It has been noted that having arrays of arrays of arrays and so forth can be very complicated and hard to track. I believe them. } }