What is the value of `len` after this aggregation-free find on a document where `items` is missing entirely?// document: { _id: 1, name: "box" } db.things.updateOne( { _id: 1 }, { $push: { items: "apple" } } ) // then fetch and check items