Arrays & Array Methods (map, filter, reduce)

What does the argument in flat(2) specify?
const arr = [1, [2, [3, 4], 5]];
const flattened = arr.flat(2);
Next Question (15/20)