public static void Main()
Random numberGen = new Random();
while(roll01 != roll02) {
roll01 = numberGen.Next(1,7);
roll02 = numberGen.Next(1,7);
Console.WriteLine("{" + roll01 + "} " + "{" + roll02 + "}");
Console.WriteLine("It took you " + attempts + " attempts to roll doubles");