const generateQuestionAnswer = () => {
  const question = getQuestion();
  const answer = getAnswer(isEven(question));
  return cons(question, answer);
};