const getTask = (number: number) => ({
  question: `Question: ${number}`,
  answer: isPrime(number) ? 'yes' : 'no',
});