##### COMMANDS TO CREATE A SAMPLE DATABASE & COLLECTION #####
> use warehouse

> db.products.insertMany( [
	{ "_id" : 5, "item" : "mango", "type" : "cortland", "cost" : 1.29 },
	{ "_id" : 9, "item" : "mango", "type" : "fuji", "cost" : 1.99 },
	{ "_id" : 7, "item" : "mango", "type" : "honey crisp", "cost" : 1.99 },
	{ "_id" : 10, "item" : "mango", "type" : "jonagold", "cost" : 1.29 },
	{ "_id" : 1, "item" : "mango", "type" : "jonathan", "cost" : 1.29 },
	{ "_id" : 6, "item" : "mango", "type" : "mcintosh", "cost" : 1.29 },
	{ "_id" : 8, "item" : "orange", "type" : "cara", "cost" : 2.99 },
	{ "_id" : 4, "item" : "orange", "type" : "navel", "cost" : 1.39 },
	{ "_id" : 3, "item" : "orange", "type" : "satsuma", "cost" : 1.99 },
	{ "_id" : 2, "item" : "orange", "type" : "valencia", "cost" : 0.99 }
] )

##### COMMAND TO DISPLAY THE DOCUMENTS OF A COLLECTION #####
> db.products.find()