const generateGameData = () => {
  const question = getRandomNumber(1, 99);
  const trueAnswer = isEven(question) ? 'yes' : 'no';
  return cons(question, trueAnswer);
};