function accessObject() {
const myStorage = {
"car": {
"inside": {
"glove box": "maps",
"passenger seat": "crumbs"}
,
"outside": {
"trunk": "jack"}
}
};
return gloveBoxContents;
console.log(accessObject())
unction accessArray() {
const myPlants = [
{
type: "flowers",
list: [
"rose",
"tulip",
"dandelion"
]
},
{
type: "trees",
list: [
"fir",
"pine",
"birch"
]
}
];