const getQuestionAndCorrectAnswer = () => {
  const question = random(1, max);
  const correctAnswer = isEven(question) ? 'yes' : 'no';
  return cons(question, correctAnswer);
};