i have function called sunset that copies the existing array sunsetColors by reference and then changes the first element to "blue". sunset should return the copy of the array.
function sunset(){
  let clone =sunsetColors;
clone.splice(0,0,"blue");
  return clone;
}
sunset()
 
     
    