const primeQuestion = () => {
  const question = getRandomInt(1, 100);
  const coorectAnswer = isPrime(question) ? 'yes' : 'no';

  return cons(question, coorectAnswer);