using static System.Console;
var randomGenerator = new Random();
WriteLine("How many times should I roll the dice?");
var numberOfTimesString = ReadLine();
var numberOfTimes = int.Parse(numberOfTimesString);
for(count = 1; count <= numberOfTimes; count++)
var firstDiceRoll = randomGenerator.Next(1,7);
var secondDiceRoll = randomGenerator.Next(1,7);
var thirdDiceRoll = randomGenerator.Next(1,7);
var fourthDiceRoll = randomGenerator.Next(1,7);
var fifthDiceRoll = randomGenerator.Next(1,7);
var sixthDiceRoll = randomGenerator.Next(1,7);
if ((firstDiceRoll == secondDiceRoll) && (secondDiceRoll==thirdDiceRoll) && (thirdDiceRoll==fourthDiceRoll) && (fourthDiceRoll==fifthDiceRoll) && (fifthDiceRoll==sixthDiceRoll))
WriteLine($"Done! There were {countOfYahtzee} Yahtzees! & {nonYahtzeeRoll} non-Yahtzees rolled.")