That’s bizarre, it’s working fine on my local environment, there shouldn’t be other parameters needed. The comma is because it’s continuing with the parser.
That said, there’s nothing returning because nothing is there @Rahul_pal. You need to build the schema, the DB, etc.
@Rahul_pal if it’s been done correctly, you can do the following to check the work:
In MongoDB when logged in via terminal:
show dbs
Select the DB in this case whatever you named the database by typing: use databasename
show collections
You should then see the fruits collection.
db.fruits.find will then pull up all documents in fruit.
What the freeze is indicating is there is nothing to CD into, you need to not just “connect” it, but you need to “build” it.