Accessing Nested Objects in java script

can anyone tell me what’s happening
my code is

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

var gloveBoxContents = myStorage.car.inside ["glove box"] // Change this line

I don’t see any problem. Your code works. I suggest not leaving space between the object name and the property name.

myStorage.car.inside["glove box"]

But that’s all about it

ohh got it thanks for your help.