public class Ragged { public void doTheThing() { char[][] letters; letters=new char[5][]; //This is telling it to make an array of char[]'s //Each 'row' is still just a null, so we need to create each row separately for ( int i=0; i