public static void Main()
Random NumGen = new Random();
Console.Write("Enter the number you want: ");
num01 = Convert.ToInt32(Console.ReadLine());
attempt = NumGen.Next(1,7);
Console.WriteLine("You rolled: " + attempt);
Console.WriteLine("It took you " + NumAttempts + " attempt(s) to roll a six.");