const getQuestionAnswer = () => {
  const question = getRandom(1, 99);
  const correctAnswer = isPrime(question) ? 'yes' : 'no';
  return [question, correctAnswer];
};