What happens when this HTTP handler runs for a request?const http = require('http'); http.createServer((req, res) => { res.end('hello'); res.setHeader('X-Powered-By', 'me'); }).listen(3000);