Find and Count elements of collection with Mongoose

In Mongoose, I need to find elements in a collection and count them, and getting both the results of the find and count. I have tried Model.find().count(function (err, count) { // Get count, but