using System;
public class Program
{
public static void Main()
int randomNumber;
Random random = new Random();
randomNumber = random.Next(0);// students to run program at this point to see large number generated
//STEP 2 - COMMENT OUT PREVIOUS LINE AND REPLACE WITH THIS TO SHOW RANGE OF NUMBERS EXPECTED- randomNumber = random.Next(1,7);
Console.WriteLine("Your random number is " +randomNumber);
}