A document has `nums: [1, 2, 2, 3, 2]`. After running this update, what is `nums`?db.col.updateOne( { _id: 1 }, { $pull: { nums: 2 } } )