const getGameData = () => {
  const questionGame = getRandomNumber(0, 100);
  const correctAnswer = getAnswerDependingCallback(isEven, questionGame);
  return { questionGame, correctAnswer };
};