/**
  * getStringInput calls the method getStringInput from {@link GameController} and returns the
  * users input.
  *
  * @return Returns user input.
  */
 private String getStringInput() {
   String input = controller.getStringInput();
   return input;
 }