diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index 0e2f77a5f0..417fb8d91c 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json @@ -997,9 +997,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.", - "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.", + "Given the array arr, iterate through and remove each element starting from the first element (the 0 index) until the function func returns true when the iterated element is passed through it.", + "Then return the rest of the array once the condition is satisfied, otherwise, arr should be returned as an empty array.", "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ], "challengeSeed": [