const getRoundData = () => {
  const question = getRandNumber(startRange, endRange);
  const correctAnswer = isEven(question) ? 'yes' : 'no';
  return cons(question, String(correctAnswer));
};