const genRound = () => {
  const question = getRandomNum(minRandomNumber, maxRandomNumber);
  const answer = isEven(question) ? 'yes' : 'no';
  return [question, answer];
};