class Kicky2 { public static void main (String [ ] args) { String rhubarb; String [] yummy; int x; yummy = new String[5]; yummy[0] = "The first one"; yummy[1] = "ouch"; yummy[2] = "I'm \"alive\" ... really I am, at least that's what I think!"; yummy[3] = "This can't be happening, at least not often."; yummy[4] = "the last one"; for (int i=1; i<=5; i++){ x = (int) ( Math.random() * yummy.length ); rhubarb = yummy[x]; System.out.println("i = "+ i + ", " + rhubarb); } } }