public static void Main()
Console.WriteLine("Welcome to the Number Guessing Game! ");
Console.WriteLine("Creating a random number between 0 and 200,000");
Console.WriteLine("----------------------------");
Random rnd = new Random();
int dice = rnd.Next(0, 200,000);