Record Collection works but doesn't pass test in FFC

Hi so im pretty stumped, ive been trying to fix this for a few hours now and can’t work it out. I have tried running the code in another sites testing software and it works fine. However, on freeCodeCamp the test “After updateRecords(5439, “tracks”, “Take a Chance on Me”), tracks should have “Take a Chance on Me” as the last element.” wont tick off. Is it wrong or right? i’m really confused.

var collection = {
    "2548": {
      "album": "Slippery When Wet",
      "artist": "Bon Jovi",
      "tracks": [ 
        "Let It Rock", 
        "You Give Love a Bad Name" 
      ]
    },
    "2468": {
      "album": "1999",
      "artist": "Prince",
      "tracks": [ 
        "1999", 
        "Little Red Corvette" 
      ]
    },
    "1245": {
      "artist": "Robert Palmer",
      "tracks": [ ]
    },
    "5439": {
      "album": "ABBA Gold"
    }
};
// Keep a copy of the collection for tests
var collectionCopy = JSON.parse(JSON.stringify(collection));

// Only change code below this line


function updateRecords(id, prop, value) {
 
if(prop !== "tracks" && value !== ""){
  
  collection[id][prop] = value;

} else if(prop === "tracks" && collection[id].hasOwnProperty("tracks") === false){
  
  collection[id].tracks = value;

} else if(prop === "tracks" && value !== ""){
  
  collection[id].tracks.push(value);

} else if (value === ""){
  
  delete collection[id][prop];

}

  return collection;
}

updateRecords("5439", "tracks", "Take a Chance on Me")

thanks, I will do that in the future.

ahh, i see. would it be:
collection[id].tracks = [value]; ?

yes it worked! your the best. thanks!