const pairEven = () => {
  const question = randomInteger(1, 100);
  const answer = isEven(question) ? 'yes' : 'no';

  return cons(question, answer);