diff --git a/challenges/01-front-end-development-certification/jquery.json b/challenges/01-front-end-development-certification/jquery.json
index 099f4a895e..468cba8d7b 100644
--- a/challenges/01-front-end-development-certification/jquery.json
+++ b/challenges/01-front-end-development-certification/jquery.json
@@ -344,8 +344,7 @@
"title": "Target the same element with multiple jQuery Selectors",
"description": [
"Now you know three ways of targeting elements: by type: $(\"button\")
, by class: $(\".btn\")
, and by id $(\"#target1\")
.",
- "Although it is possible to add multiple classes in a single .addClass()
call, let's add them to the same element in three different ways.",
- "Using each of the above jQuery selectors and the addClass()
function:",
+ "Using .addClass()
, add only one class at a time to the same element, three different ways:",
"Add the animated
class to all elements with type button
.",
"Add the shake
class to all the buttons with class .btn
.",
"Add the btn-primary
class to the button with id #target1
."