diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md index 0e5de37b21..6240048d1c 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-089.md @@ -24,7 +24,6 @@ In the `.blue` CSS rule, add the `box-shadow` property with the values `0` for ` Your `.blue` CSS rule should have a `box-shadow` shorthand property and with the value `0 0 0 5px blue`. ```js -console.log(new __helpers.CSSHelp(document).getStyle('.blue')); assert(new __helpers.CSSHelp(document).getStyle('.blue')?.boxShadow === 'blue 0px 0px 0px 5px'); ```