diff --git a/challenges/01-front-end-development-certification/jquery.json b/challenges/01-front-end-development-certification/jquery.json
index 1ba836e28aa..0dc48a11c52 100644
--- a/challenges/01-front-end-development-certification/jquery.json
+++ b/challenges/01-front-end-development-certification/jquery.json
@@ -389,10 +389,12 @@
"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 separate ways.",
"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."
+ "Add the btn-primary class to the button with id #target1.",
+ "Note
You should only be targeting one element and adding only one class at a time. Altogether, your three individual selectors will end up adding the three classes shake, animated, and btn-primary to #target1."
],
"challengeSeed": [
"fccss",