It's best practice to add the console.log inside a callback function otherwise it may console.log even if the server hasn't worked. https://nodejs.org/api/net.html#net_server_listen ```javascript server.listen(PORT, () => `Server is running on ${PORT}`) ```