diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-dot-notation.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-dot-notation.md index eb3430dd40f..db9d63d3bb8 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-dot-notation.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-dot-notation.md @@ -76,9 +76,9 @@ assert(code.match(/testObj\.\w+/g).length > 1); ```js // Setup const testObj = { - "hat": "ballcap", - "shirt": "jersey", - "shoes": "cleats" + hat: "ballcap", + shirt: "jersey", + shoes: "cleats" }; // Only change code below this line @@ -90,9 +90,9 @@ const shirtValue = testObj; // Change this line ```js const testObj = { - "hat": "ballcap", - "shirt": "jersey", - "shoes": "cleats" + hat: "ballcap", + shirt: "jersey", + shoes: "cleats" }; const hatValue = testObj.hat;