const pairPrime = () => {
  const question = randomInteger(1, 1000);
  const answer = isPrime(question) ? 'yes' : 'no';
  return cons(question, answer);
};