Accessing Nested Objects in the given problem

Tell us what’s happening:

Your code so far


// Setup
var myStorage = {
  "car": {
    "inside": {
      "glove box": "maps",
      "passenger seat": "crumbs"
     },
    "outside": {
      "trunk": "jack"
    }
  }
};

var gloveBoxContents = myStorage.car.inside[1]; // Change this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-objects

Anybody can give me the clue for the given problem.

I think I need to use var gloveBoxContents = myStorage.car.inside[“glove box”];
I tried this and it worked

Thank you I was using as we do in the arrays in the c or c++ or Java.
I got it now…