Search
During destructuring, adding a star before a variable name makes that variable greedy and that variable takes up all the remaining values.
In the case given above, variable b takes up both the values 2 and 3 and puts them in an array.
b