public static void Main()
Console.WriteLine("Please enter your name");
string name = Console.ReadLine();
Console.WriteLine(name + " your lucky number is 1 and your lucky color is pink, you will find a lucky charm");
Console.WriteLine(name + " your lucky number is 2 and your lucky color is grey, you will win a million dollars");
Console.WriteLine(name + " your lucky number is 3 and your lucky color is red , you will recieve 4 free tickets to Spiderman No Way Home");
Console.WriteLine(name + " your lucky number is 4 and your lucky color is black you will get a free pair of D.O.N spiderman basketball shoes");
Console.WriteLine(name + " your lucky number is 5 and your lucky color is green, you will get a free vacation");
Console.WriteLine(name + " your lucky number is 6 your lucky color is blue, and you will get 50 days off school");
Console.WriteLine(name + " your lucky number is 7 and your lucky color is white, you will get a new car");
Console.WriteLine(name + " your lucky number is 8 and your lucky color is orange, you will get a 100 on your next test");
Console.WriteLine(name + " your lucky number is 9 and your lucky color is yellow, you will get a new phone");
Console.WriteLine(name + " your lucky number is 10 and your lucky color is purple, you will get NBA 2k22 for free");
Console.WriteLine("Do you wish to restart the program? y/n?");
string choice = Console.ReadLine();
if (choice == "Y" || choice == "y")
Console.WriteLine("Thank you for using the Fortune telling lab");