array destructuring more

const arr = ['a', 'b', 'c']

let [a,b,c,d] = arr;
console.log(a,b,c,d);

//Result:
//a b c undefined