Random rnd = new Random();
int month = rnd.Next(1, 13); // creates a number between 1 and 12int dice = rnd.Next(1, 7); // creates a number between 1 and 6int card = rnd.Next(52); // creates a number between 0 and 51
// One string will be randomly picked and displayed
Random rnd = new Random();
string[] secOptions = {"string one", "string two", "string three"};
int randomNuber = rnd.Next(0, 3);
string secText = secOptions[randomNuber];
Console.WriteLine(secText);
Random numberGen = new Random();
int amountToOutput = 4;
int minimumRange = 1;
int maximumRange = 20;
for(int i = 0; i < amountToOutput; i++)
{
int randomNumber = numberGen.Next(minimumRange, maximumRange);
Console.WriteLine(randomNumber);
}