public static void Main()
string thisProgram = "This story will take you to a far away land of wonders and curiosities.";
string author = "As brought to you by ScarletDiva.";
string welcome = "Welcome! This story is about to take you to a journey, hold on to your socks!";
string title = "This Thursday.";
Console.WriteLine(thisProgram + author);
Console.WriteLine(welcome);
Console.WriteLine(title);
Console.Write("Enter a name: ");
string name = Console.ReadLine();
Console.Write("Enter a firstAdjective: ");
string firstAdjective = Console.ReadLine();
Console.Write("Enter a secondAdjective: ");
string secondAdjective = Console.ReadLine();
Console.Write("Enter an animal: ");
string animal = Console.ReadLine();
Console.Write("Enter a food: ");
string food = Console.ReadLine();
Console.Write("Enter a verb: ");
string verb = Console.ReadLine();
Console.Write("Enter a firstNoun: ");
string firstNoun = Console.ReadLine();
Console.Write("Enter a fruit: ");
string fruit = Console.ReadLine();
Console.Write("Enter a thirdAdjective: ");
string thirdAdjective = Console.ReadLine();
Console.Write("Enter a superhero: ");
string superhero = Console.ReadLine();
Console.Write("Enter a country: ");
string country = Console.ReadLine();
Console.Write("Enter a dessert: ");
string dessert = Console.ReadLine();
Console.Write("Enter a year: ");
string year = Console.ReadLine();
Console.Write("Enter a secondNoun: ");
string secondNoun = Console.ReadLine();
Console.WriteLine($"This morning {name} woke up feeling {firstAdjective}. 'It is going to be a {secondAdjective} day!' Outside, a bunch of {animal}s were protesting to keep {food} in stores. They began to {verb} to the rhythm of the {firstNoun}, which made all the {fruit}s very {thirdAdjective}. Concerned, {name} texted {superhero}, who flew {name} to {country} and dropped {name} in a puddle of frozen {dessert}. {name} woke up in the year {year}, in a world where {secondNoun}s ruled the world.");