Goal: Do you know `lodash`? `Chunk` is a very useful function in it, now let's implement it. `Chunk<T, N>` accepts two required type parameters, the `T` must be a `tuple`, and the `N` must be an `integer >=1`. For instance: Source challenge: https://github.com/type-challenges/type-challenges/tree/main/questions/04499-medium-chunk Reference explanation: https://github.com/ghaiklor/type-challenges-solutions/blob/main/en/medium-chunk.md
Run "Check Solution" to validate your code in the browser.