You created two text indexes intending to search `title` and `body` separately. The second `createIndex` call fails. Why?db.docs.createIndex({ title: 'text' }) db.docs.createIndex({ body: 'text' }) // fails