const generateTask = () => {
  const question = `${getRndInteger(100)}`;
  const correctAnswer = getCorrectAnswer(question);
  return [question, String(correctAnswer)];
};