const makeGameData = () => {
  const gameQuestion = getRandomNum(0, 100);
  const correctAnswer = isEven(gameQuestion) ? 'yes' : 'no';

  return { gameQuestion, correctAnswer };