diff --git a/challenges/01-front-end-development-certification/intermediate-bonfires.json b/challenges/01-front-end-development-certification/intermediate-bonfires.json
index 91b0e7693f..7c43fb5d28 100644
--- a/challenges/01-front-end-development-certification/intermediate-bonfires.json
+++ b/challenges/01-front-end-development-certification/intermediate-bonfires.json
@@ -684,7 +684,8 @@
"id": "a5deed1811a43193f9f1c841",
"title": "Drop it",
"description": [
- "Drop the elements of an array (first argument), starting from the front, until the predicate (second argument) returns true.",
+ "Drop the elements of an array (first argument), starting from the front, until the predicate (second argument) returns true
.",
+ "The second argument, func
, is a function you'll use to test the first elements of the array to decide if you should drop it or not.",
"Return the rest of the array, otherwise return an empty array.",
"Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code."
],