public class JAVA_043 { public static void main(String[] args) { String[] stars={ \"Robert Redford\" , \"Marilyn Monroe\" , \"Boris Karloff\" , \"Lassie\" , \"Hopalong Cassidy\" , \"Trigger\" }; int lucky_star=(int)(Math.random( )*stars.length); System.out.println(\"Your lucky star for today is : \" + stars[lucky_star]); } }