Course · Section 11: Working With Arrays · Lecture 149: Simple Array Methods
Implement `flatten(arr)` flattening one level of nesting.
+ 1 hidden test run on Submit.
Spreading the array into [].concat merges nested arrays exactly one level deep.
Run your code to see results.