// =====================================================
// QUESTION 2.1: CREATE THE FIVE COLLECTIONS
// =====================================================
db.createCollection("author");
db.createCollection("book");
db.createCollection("bookAuthor");
db.createCollection("member");
db.createCollection("borrowedBooks");
print("Collections created successfully:");
printjson(db.getCollectionNames().sort());
To embed this project on your website, copy the following code and paste it into your website's HTML: