const getGameData = () => {
  const question = getRandomNum(1, 99);
  const rightAnswer = isPrime(question) ? 'yes' : 'no';
  return [question, rightAnswer];
};