const getPrimeGame = () => {
  const getQuestionAndAnswer = () => {
    const randomNum = getRandomNumberToString(minNum, maxNum);
    const question = randomNum;
    const correctAnswer = isPrime(question) ? 'yes' : 'no';