Problem with passing create many records issue MongoDB

I am only getting test completed for this challenge

var createAndSavePerson = function(done) {
  
  const person = new Person({name:"Joe",age:"20",favoriteFoods:["rice"]})
    person.save(function(err,data){
      if(err){
        done(err);
      }
    done(null, data);
    }); 

};

Can anyone see what I am missing