const getQuestionAndAnswer = () => {
  const question = getRandomInteger();
  const correctAnswer = isEven(question) ? 'yes' : 'no';
  return cons(String(question), correctAnswer);
};