const generateRound = () => {
  const roundQuestion = getRandom(1, 50);
  const rightAnswer = isPrime(roundQuestion) ? 'yes' : 'no';
  return [roundQuestion, rightAnswer];
};