what is the problem
let foods = {
apples: 25,
oranges: 32,
plums: 28
};
// change code below this line
let foods["bananas"] = 13;
let foods["grapes"] = 35;
let foods["strawberries"] = 27;
// change code above this line
console.log(foods);
Your browser information: