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: