const brainEven = () => {
  const question = randInt(minRandRange, maxRandRange);
  const answer = isEven(question) ? 'yes' : 'no';
  return cons(question, String(answer));
};