diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json
index 9fd32dab1c..ebea4a588c 100644
--- a/seed/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json
@@ -3616,7 +3616,7 @@
"You are given a JSON object representing (a small part of) your record collection. Each album is identified by a unique id number and has several properties. Not all albums have complete information.",
"Write a function which takes an id
, a property (prop
), and a value
.",
"For the given id
in collection
:",
- "If value
is non-blank (value !== \"\"
), then update or set the value
for the prop
.",
+ "If value
is non-blank (value !== \"\"
) and prop
is not \"tracks\"
then update or set the value
for the prop
.",
"If the prop
is \"tracks\"
and value
is non-blank, push the value
onto the end of the tracks
array.",
"If value
is blank, delete that prop
.",
"Always return the entire collection object."