Hello, I found out that there is another way to query two conditions in MongoDB shell. The one considered as an answer in CodeCademy’s Learn MongoDB course, is this one:
db.listingsAndReviews.find({ borough: "Brooklyn", cuisine: "Caribbean" })
```
Since this was a question I initially didn't have an idea about, I did some research prior to answering the question where I found that the following code works just as well, from this [article](https://www.bmc.com/blogs/mongodb-operators/)
```
db.listingsAndReviews.find({$and: [{borough: "Brooklyn"}, {cuisine: "Caribbean"}]})
```
However, CodeCademy considers it wrong.