const getQuestionAndAnswer = () => {
  const question = getRandomInt(2, 199);
  const answer = isPrime(question) ? 'yes' : 'no';

  return {