const questionAndAnswerGenerator = () => {
  const question = getRandomInt(0, 100);
  const answer = getRightAnswer(question);
  const questionAndAnswer = [question, answer];