namespace MadLibsGenerator
static void Main(string[] args)
Console.WriteLine("Insert a noun below:");
string noun = Console.ReadLine();
Console.WriteLine("Insert an adjective below:");
string adjective = Console.ReadLine();
Console.WriteLine("Insert a verb in third person below:");
string verb = Console.ReadLine();
Console.WriteLine("Insert a color below:");
string color = Console.ReadLine();
Console.WriteLine("Insert a object below:");
string myObject = Console.ReadLine();
string sentence = $"{adjective} {noun} {verb} with a {color} {myObject}.";
Console.WriteLine(sentence);