Basic JavaScript: Record Collection

why is this code not the right answer??

function updateRecords(id, prop, value) {

function updateRecords(id, prop, value) {

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

  return collection;
}

Can you attach a link to the challenge ?

https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/record-collection/