/** Prepares the game for the next round. Next word is loaded in and the guesses are reset */
 public void nextWord() {
   game.selectWord();
   game.resetGuesses();
   setText();
 }