public static void Main()
Console.WriteLine("What is your name?");
name = Console.ReadLine();
Console.WriteLine(name + ", your lucky number is 7 and your lucky color is red. You will get a 100 on your next exam.");
Console.WriteLine(name + ", your lucky number is 21 and your lucky color is orange. You will recieve a hundred dollars from your parents today.");
Console.WriteLine(name + ", your lucky number is 4 and your lucky color is purple. You will have no homework for the rest of this year.");
Console.WriteLine(name + ", your lucky number is 33 and your lucky color is blue. You will get a tour of a mueseum of your choice for free.");
Console.WriteLine(name + ", your lucky number is 77 and your lucky color is green. You will get the new ps5 for free.");
Console.WriteLine(name + ", your lucky number is 28 and your lucky color is black. You will make many friends this year.");
Console.WriteLine(name + ", your lucky number is 22 and your lucky color is violet. You will get a scholarship to college.");
Console.WriteLine(name + ", your lucky number is 44 and your lucky color is yellow. You will become a millionare.");
Console.WriteLine(name + ", your lucky number is 1 and your lucky color is brown. You will have nothing to worry about in life.");
Console.WriteLine(name + ", your lucky number is 14 and your lucky color is indigo. You will live a long and healthy life.");
Console.WriteLine("Would you like to restart the program? y/n");
string choice = Console.ReadLine();
if (choice == "Y" || choice == "y")