public ActionResult StartGame(Difficulty difficulty)
        {
            string newGameCode = _triviaService.CreateNewGame(difficulty);

            return(Ok(newGameCode));
        }