I want to save the result of the find() command to a new collection (based on an answer to a similiar question Saving the result of a MongoDB query).
> db.collection2.insert(db.collection1.find({"person.name": "Carl"}))
then I wanted to see whether this was successfull
> db.righthand.find()
[Object]
I am not sure why it outputted [Object] because I assumed it would insert the result of db.collection1.find().