Given this document, what does the $unwind stage output?// doc: { _id: 1, tags: ["a", "b", "c"] } db.coll.aggregate([ { $unwind: "$tags" } ])