Complete the code to find documents where the 'tags' array contains all specified elements.
db.collection.find({ tags: { [1]: ["red", "blue"] } })Complete the query to find documents where the 'colors' array contains all of 'green' and 'yellow'.
db.products.find({ colors: { [1]: ["green", "yellow"] } })Fix the error in the query to correctly find documents where 'features' contains all specified values.
db.items.find({ features: { [1]: ["wifi", "bluetooth"] } })Fill both blanks to find documents where 'skills' array contains all specified skills and the 'level' is 'advanced'.
db.users.find({ skills: { [1]: ["python", "mongodb"] }, level: [2] })Fill all three blanks to find documents where 'tags' contains all specified tags, 'status' is 'active', and 'priority' is greater than 5.
db.tasks.find({ tags: { [1]: ["urgent", "client"] }, status: [2], priority: { [3]: 5 } })