public class TestListInits { /** Started by dick on Wed Mar 4 10:08:19 PST 1998 */ public static void main(String args[]) { String words[] = { "Goodbye", "Cruel", "Word."}; System.out.println(words[0]+" "+words[1]+" "+words[2]); }//main }//class TestListInits