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