diff --git a/app.js b/app.js
index 541532ebe..492e950c4 100644
--- a/app.js
+++ b/app.js
@@ -2,7 +2,7 @@ const express = require('express');
 const app = express();
 const port = 8080;
 
-app.get('/', (req, res) => res.send('Hello World!'));
+app.get('/', (req, res) => res.send('Hello World of Prerit, once again!'));
 
 app.listen(port);
 console.log(`App running on http://localhost:${port}`);