Accessing Nested Objects, i am stuck here

Tell us what’s happening:
please help i am instructed to access the property of glove box “maps” using bracket notation and space.

Your code so far

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

// Only change code below this line
myStorage.car["glove box"].maps; 
var gloveBoxContents = " maps"; // Change this line

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/accessing-nested-objects

You’re really close, your missing an object after car. Also look again at the example given.

thanks, i add car.inside[“glove box”].maps // still i can’t pass the challenge

thanks for your help, but still i can’t make it. here is the screen shot