const getQuestionAndAnswer = () => {
  const question = getRandomNumber(1, 50);
  const answer = (isPrime(question)) ? 'yes' : 'no';
  return [question, answer];
};