const makeTest = () => {
  const question = getRandomInt(min, max);
  const answer = isEven(question) ? 'yes' : 'no';

  return { question, answer };