What is the correct syntax to start an Express server on port 8080?
app.start(8080);
express.listen(8080);
app.listen(8080);
server.run(8080);