ES6 - Destructuring via rest elements

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

 function removeFirstTwo(list) {
  // Only change code below this line
  
        const [,,...shortList] = list // Change this line

        const [m,n,k] = shortList
       
  // Only change code above this line
   return  [m,n,k]
        
 
}

const source = [1, 2, 3, 4, 5,6,7,8,9,10];
const sourceWithoutFirstTwo = removeFirstTwo(source);
console.log(sourceWithoutFirstTwo)

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/109.0

Challenge: ES6 - Destructuring via rest elements

Link to the challenge:

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!