public ActionResult Game(string exlamation, string adverb, string noun, string adjective)
        {
            GameVariable newGame = new GameVariable();

            newGame.SetExlamation(exlamation);
            newGame.SetAdverb(adverb);
            newGame.SetNoun(noun);
            newGame.SetAdjective(adjective);
            return(View(newGame));
        }