diff --git a/index.js b/index.js index cbdbf26c..6a6f4df7 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ var http = require('http'); var server = http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); - response.end("Hello World!"); + response.end("Hello Priyanka!"); });