What is your hint or solution suggestion?
var removeById = function(personId, done) {
Person.findByIdAndRemove (personId,(err, updatedDoc) => {
if(err) return console.log(err);
done(null, updatedDoc);
});
};
Challenge: Delete One Document Using model.findByIdAndRemove
Link to the challenge: