const setQuestionAndAnswer = () => {
  const question = randomNumber(1, 100);
  const rightAnswer = isEven(question) ? 'yes' : 'no';

  return cons(question, rightAnswer);