diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 81fc7cc5656..6fd307b86a5 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -3618,7 +3618,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."