const getRoundData = () => {
  const question = random(0, 100);
  const correctAnswer = isEven(question) ? 'yes' : 'no';

  return cons(question.toString(), correctAnswer);