const getQuestionAndAnswer = () => {
  const question = random(min, max);
  const answer = isEven(question) ? confirmation : negation;
  return cons(question, answer);
};