Hint
Destructuring supports skipping (empty comma) and rest to collect remaining elements.
const [first, , third, ...rest] = [1, 2, 3, 4, 5];
console.log(first);
console.log(third);
console.log(rest.join(','));1 3 4,5
Explanation: first=1, second skipped, third=3, rest=[4,5].
Key Insight: Destructuring supports skipping (empty comma) and rest to collect remaining elements.