this is my code:
const request = require('request');
const app = require('express');
app.get('/', function (req, res) {
res.send('hello world');
});
app.listen(3000);
but for some reason i kepp getting this error : "app.get is not a function" I made sure that express is installed but it keeps throwing this error