class NoDaisys{ public static void main (String str[]){ String movies [] = new String [5]; movies [0] = "Creatue from the black lagoon"; movies [2] = "Dont Eat the dasies"; for(int i =0; i < movies.length; i++) { System.out.println(movies[i]); } } }