const startbBrainPrime = () => {
  const getGameData = () => {
    const question = getRandom(1, 500);
    const gameData = {};
    gameData.answer = isPrime(question) ? 'yes' : 'no';