using System;
public class Program
{
public static void Main()
// Create a function called 'gen' that will create random numbers
Random gen= new Random ();
// Generate a random integer between 1 and 9
int random1 = gen.Next(1,10);
Console.WriteLine("Here's an entirely new random number for you:\n" + random1);
}