Well done!
You have completed Review: Modular Routes and Route Parameters!
Quiz Question 1 of 5
If you have an app with "birds" routes declared this way:
const birds = require('./birds');
app.use('/birds', birds);
and there is the following route in the
birds
file:
router.get('/south-american', (req, res) => {
...
}
what URL would match the route above?
Choose the correct answer below: