Please help me pass this test

Tell us what’s happening:
My test isn’t passing because I’m getting an error of missing ‘done()’ argument.

Your code so far
ar arrayOfPeople = [
{name: “Frankie”, age: 74, favoriteFoods: [“Del Taco”]},
{name: “Sol”, age: 76, favoriteFoods: [“roast chicken”]},
{name: “Robert”, age: 78, favoriteFoods: [“wine”]}
];

var createManyPeople = function(arrayOfPeople, done) {
Person.create(arrayOfPeople, function (err, people) {
if (err) return console.log(err);
done(null, people);
});
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36.

Challenge: Create Many Records with model.create()

Link to the challenge:

if you get error, call done() to stop it there and proceed to the next