var outputSubtract = function(inputs) {
  return inputs[0] + ' - ' + inputs[1] + ' = ' + (inputs[0] - inputs[1]);
};