publicclass JAVA_043
{
publicstaticvoid 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]);
}
}