const express = require(“express”)
const server = express()
server.get(’/’, function(req,res,next) {
res.send(“Hello World”)
})
server.listen(2121)
i am running this code.it is same as of my instructor but after writing localhost2121 in firefox or chrome is not printing “hello world”.