My target is to fetch all documents in "Ingredients" collection but my code returns only empty array.
This is my "Ingredients" collection:

ingredient model file:
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const ingredientSchema = new Schema({
name: String,
number: Number
})
const Ingredient = mongoose.model('Ingredients', ingredientSchema);
module.exports = Ingredient;
ingredients route file:
const router = require('express').Router();
let Ingredients = require('../models/ingredients.model');
router.route('/').get((req, res) => {
let getIngredients = async function (){
let ingredients = await Ingredients.find({});
console.log(ingredients);
res.json(ingredients)
}
getIngredients()
})
module.exports = router;
await Ingredients.find()ingredients.model?