const add = function() { }; const subtract = function(a,b) { return a+b }; const sum = function() { }; const multiply = function() { }; const power = function() { }; const factorial = function() { }; // Do not edit below this line module.exports = { add, subtract, sum, multiply, power, factorial };