const setQuestionAndAnswer = () => {
  const question = randomNumber(2, 100);

  const rightAnswer = isPrime(question) ? 'yes' : 'no';