CurrentPlayer currentPlayer = new CurrentPlayer(players);
Questions questions = new Questions();
Game aGame = new Game(currentPlayer, questions);
boolean notAWinner;
do {
aGame.play(rand.nextInt(5) + 1);
if (rand.nextInt(9) == 7) {
notAWinner = aGame.wrongAnswer();
} else {
notAWinner = aGame.correctAnswer();
}
} while (notAWinner);
}