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