const generateRound = () => {
  const question = generateRandom();
  const answer = (isPrime(question)) ? 'yes' : 'no';
  return {
    answer,