You run a `$text` search and want results ordered by relevance. Which statement about combining `$text` with sorting and the textScore is correct?
db.articles.find(
{ $text: { $search: "mongodb index" } },
{ score: { $meta: "textScore" } }
).sort({ score: { $meta: "textScore" } })