const generateGameDataPrime = () => {
  const question = generateRandom(-100000, 100000);
  const correctAnswer = isPrime(question) ? 'yes' : 'no';
  return [question, correctAnswer];
};