diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index e368cebe7ea..83e0d43ccbd 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -4502,6 +4502,7 @@
"For the given id in collection:",
"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 \"tracks\" is non-existent before you update it, create an empty array before pushing a track to it.",
"If value is blank, delete that prop.",
"Always return the entire collection object.",
"Note
Don't forget to use bracket notation when accessing object properties with variables."