Question: Which command returns all of the documents in the customers collection?

  1. `db.customers.all();`
  2. `db.find().customers();`
  3. `db.customers.find();`
  4. `db.customers.show();`

Answer: The correct answer of the above question is Option C:`db.customers.find();`