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