const getGameData = () => {
  const question = getRundomNumber(1, 100);
  const correctAnswer = isPrime(question) ? 'yes' : 'no';
  return getQA(question, correctAnswer);
};