function helloWorld(){ return "Hello World!"; } function goodbyeWorld(){ return "Goodbye World"; } module.exports = { hello: helloWorld, goodbye: goodbyeWorld }