const getQuestionAnswer = () => {
  const question = getRandomInt(minRandomInt, maxRandomInt);
  const answer = isEven(question) ? 'yes' : 'no';
  return cons(question, answer);
};