diff --git a/hello-world.js b/hello-world.js index 462649f..f9b812d 100644 --- a/hello-world.js +++ b/hello-world.js @@ -9,9 +9,8 @@ var HelloWorld = function() {}; HelloWorld.prototype.hello = function(input) { -// -// YOUR CODE GOES HERE -// + // Here is the solution: + return "Hello, World!"; }; module.exports = HelloWorld;