I am new to Node.js and mongoose, i am trying to query objects from a mongo collection using find({}) and the function is as follows :
schema.statics.listAllQuizes = function listAllQuizes(){
Model.find({},function(err,quizes,cb){
    if(err){
        return cb(err);
    }else if(!quizes){
        return cb();
    }
    else {
        return cb(err,quizes);
    }
});};
But when i call this function i get an error saying
        return cb(err,quizes);
               ^
        TypeError: cb is not a function
I am stuck at this point, can someone please help me with this, thanks in advance.
 
     
    