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