Node.js - HTTP Module
Identify the error in this code snippet that tries to serve static files from the
static folder:const express = require('express');
const app = express();
app.use(express.static.static('static'));
app.listen(3000);