Course · Section 10: A Closer Look at Functions · Lecture 135: Default Parameters
Implement `concatAll(...arrs)` returning a single array with the elements of every array argument, in order.
+ 1 hidden test run on Submit.
Each argument is an array; spreading them into concat merges their elements in order.
Run your code to see results.