write a function that, given a URL of an http get request, return to client a key:value structure of the parameters in the URL.
Sigiloso
// random example app.get('/expressions/:id', (req, res, next) => { console.log(req.params); ---> this is the answer const foundExpression = getElementById(req.params.id, expressions); if (foundExpression) { res.send(foundExpression); } else { res.status(404).send(); } });