diff --git a/challenges/01-front-end-development-certification/jquery.json b/challenges/01-front-end-development-certification/jquery.json
index cf52b13ef7..b834f880c0 100644
--- a/challenges/01-front-end-development-certification/jquery.json
+++ b/challenges/01-front-end-development-certification/jquery.json
@@ -68,7 +68,7 @@
"Now let's write our first jQuery statement. All jQuery functions start with a $
, usually referred to as a dollar sign operator
, or simply as bling
.",
"jQuery often selects an HTML element with a selector
, then does something to that element.",
"For example, let's make all of your button
elements bounce. Just add this code inside your document ready function:",
- "$(\"button\").addClass(\"animated bounce\")
",
+ "$(\"button\").addClass(\"animated bounce\");
",
"Note that we've already included both the jQuery library and the Animate.css library in the background so that you can use them in the editor. So you are using jQuery to apply the Animate.css bounce
class to your button
elements."
],
"tests": [