const newQuestion = () => {
  const gameQuestion = `${generateRandomNum(1, 30)}`;
  const rightAnswer = isPrime(gameQuestion) ? 'yes' : 'no';
  return { gameQuestion, rightAnswer };
};