const getRoundData = () => {
  const question = createRandomNumber(1, 101);
  const answer = isPrime(question) ? 'yes' : 'no';
  return [question, answer];
};