const generateGameSet = () => {
  const question = Math.round(Math.random() * 500);
  const answer = isPrime(question) ? 'yes' : 'no';
  return [question, answer];
};