const getTask = () => {
  const question = getRandomInteger(1, 10);
  const rightAnswer = isPrime(question) ? 'yes' : 'no';
  return cons(question, rightAnswer);
};