diff --git a/challenges/01-front-end-development-certification/html5-and-css.json b/challenges/01-front-end-development-certification/html5-and-css.json
index 4260c5aca5..a1b9e6cbe3 100644
--- a/challenges/01-front-end-development-certification/html5-and-css.json
+++ b/challenges/01-front-end-development-certification/html5-and-css.json
@@ -494,7 +494,7 @@
"assert($(\"p\").length > 1, 'message: You need 2 p
elements with Kitty Ipsum text.');",
"assert(code.match(/<\\/p>/g) && code.match(/<\\/p>/g).length === code.match(/
p elements has a closing tag.');",
"assert.isTrue((/Purr\\s+jump\\s+eat/gi).test($(\"p\").text()), 'message: Your p
element should contain the first few words of the provided additional kitty ipsum text
.');",
- "assert(Number.parseInt($(\"p\").not(\".red-text\").css(\"font-size\"), 10) > 15, 'message: Give elements with the p
tag a font-size
of 16px
. Browser and Text zoom should be at 100%.');"
+ "assert(parseInt($(\"p\").not(\".red-text\").css(\"font-size\"), 10) > 15, 'message: Give elements with the p
tag a font-size
of 16px
. Browser and Text zoom should be at 100%.');"
],
"challengeType": 0,
"nameEs": "Cambia el tamaƱo de fuente de un elemento.",