i would expect a TRUE, why do i get FALSE?
   var words = ['Hi', 'Hello', 'Good day'];  
    var otherWords = [...words];  
    console.log(otherWords);           // => ['Hi', 'Hello', 'Good day']  
    console.log(otherWords === words); // => false  
i would expect a TRUE, why do i get FALSE?
   var words = ['Hi', 'Hello', 'Good day'];  
    var otherWords = [...words];  
    console.log(otherWords);           // => ['Hi', 'Hello', 'Good day']  
    console.log(otherWords === words); // => false  
