Привет! Не получается пройти урок на Freecodecamp - ES6: Use Destructuring Assignment with the Rest Operator to Reassign Array Elements (
https://beta.freecodecamp.org/en/challenges/es6/us...
Привожу код:
const source = [1,2,3,4,5,6,7,8,9,10];
function removeFirstTwo(list) {
"use strict";
// change code below this line
let [,,...arr] = list; // change this
// change code below this line
return arr;
}
const arr = removeFirstTwo(source);
console.log(arr); // should be [3,4,5,6,7,8,9,10]
console.log(source); // should be [1,2,3,4,5,6,7,8,9,10];
Не проходит только один тест - "destructuring was used.". Прошу вашей помощи, форум Freecodecamp и Google ответа не дали. что я не так делаю?