public ActionResult MadLibs(string person1, string person2, string animal, string exclamation, string verb, string noun)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.SetPerson1(person1);
            myMadLibsVariable.SetPerson2(person2);
            myMadLibsVariable.SetAnimal(animal);
            myMadLibsVariable.SetExclamation(exclamation);
            myMadLibsVariable.SetVerb(verb);
            myMadLibsVariable.SetNoun(noun);

            return(View(myMadLibsVariable));
        }