public static void Main()
Random numberGen = new Random();
Console.WriteLine("Press enter to roll the die.");
roll = numberGen.Next(1, 7);
Console.WriteLine("You rolled: " + roll);
Console.WriteLine("It took you {0} attempts to roll a six.", attempts);