public ActionResult MadLibsGenerator2(string noun, string place, string adjective, string noun2)
        {
            StoryVariable myStoryVariable = new StoryVariable();

            myStoryVariable.SetNoun(noun);
            myStoryVariable.SetPlace(place);
            myStoryVariable.SetAdjective(adjective);
            myStoryVariable.SetNoun2(noun2);
            return(View(myStoryVariable));
        }