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