Give me a solution guy s

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 = "maps";

Your browser information:

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

Challenge: Accessing Nested Objects

Link to the challenge:

Do you understand how to you would reference the “car” property of myStorage? If so, show us.

Maybe also go back in the curriculum to the challenges that shows how to access an object (you can start here).