diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f34ecc1091b4fd5a8a484.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f34ecc1091b4fd5a8a484.md index 25dd5a9fae3..986fa607633 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f34ecc1091b4fd5a8a484.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f34ecc1091b4fd5a8a484.md @@ -30,7 +30,7 @@ assert.notMatch(code, /<\/link>/); Your two `link` elements should be inside the `head` element. ```js -const headContentRegex = /(?<=)(?:.|\s*)*?(?=<\/head\s*>)/; +const headContentRegex = /(?<=)[\S|\s]*(?=<\/head\s*>)/; const headElementContent = code.match(headContentRegex); const headElement = document.createElement("head");