I have the following variables:
$firstSection = $main.children[0];
$secondSection = $main.children[1];
To use array destructuring on the first variable, I can do this: [$firstSection] = $main.children;
However, how am I supposed to use array destructuring on the second variable? Thanks.