export default () => {
  const questionAndAnswerGenerator = () => {
    const question = randomInt(0, 100);

    const answer = isEven(question) ? 'yes' : 'no';