case '+': {
      const question = (`${firstInt} + ${secondInt}`);
      const trueAnswer = String(firstInt + secondInt);
      return cons(question, trueAnswer);
    }