public static void Main()
Console.WriteLine("Hello! Are you ready to complete this MadLib? This MadLib is 'My Trip to Disney World'.");
Console.WriteLine("Directions: Type the word the questions asks for. The completed MadLib will be at the end.");
Console.Write("Press Enter to continue..");
Enter = Console.ReadLine();
Console.WriteLine("Tell me one of your friends name.");
friendsName1 = Console.ReadLine();
Console.WriteLine("Give me a number of hours.");
numberOfHours = Console.ReadLine();
Console.WriteLine("Give me a type of transportation vehicle.");
vehicle = Console.ReadLine();
Console.WriteLine("Give me an adjective.");
adjective1 = Console.ReadLine();
Console.WriteLine("Give me another adjective.");
adjective2 = Console.ReadLine();
Console.WriteLine("Give me an ing verb.");
ingVerb = Console.ReadLine();
Console.WriteLine("Give me a type of animal.");
animal = Console.ReadLine();
Console.WriteLine("Give me another adjective again.");
adjective3 = Console.ReadLine();
Console.WriteLine("Give me a past tense verb.");
pastTenseVerb1 = Console.ReadLine();
Console.WriteLine("And give me one more adjective.");
adjective4 = Console.ReadLine();
Console.WriteLine("Give me a noun.");
noun = Console.ReadLine();
Console.WriteLine("What was your friends name again?");
friendsName2 = Console.ReadLine();
Console.WriteLine("Give me another past tense verb.");
pastTenseVerb2 = Console.ReadLine();
Console.WriteLine("And one more past tense verb.");
pastTenseVerb3 = Console.ReadLine();
Console.WriteLine("Tell me a place you would like to travel to.");
place = Console.ReadLine();
Console.WriteLine("Lastly, give me a verb.");
verb = Console.ReadLine();
Console.WriteLine("Here is the completed version of the story..");
Console.WriteLine("Last month, I went to Disney World with "+friendsName1+". We traveled for "+numberOfHours+" hours by "+vehicle+". Finally, we arrived and it was very "+adjective1+". There were "+adjective2+" people "+ingVerb+" everywhere. There were also people dressed up in "+animal+" costumes. I wish it had been more "+adjective3+" but we "+pastTenseVerb1+ " anyway. We also went on a(n) "+adjective4+" ride called Magic "+noun+". "+friendsName2+" nearly fell off a ride and had to be "+pastTenseVerb2+". Later, we went to the hotel and "+pastTenseVerb3+". Next year, I want to go to "+place+", where we can "+verb+".");