If you try to show a sparse array with 51 or more elements, JSONTree crashes with `Cannot read properties of undefined (reading 'to')` from [`isRange()`](https://github.com/reduxjs/redux-devtools/blob/main/packages/react-json-tree/src/JSONNestedNode.tsx#L29-L31) This happens any time a sparse array has more than `collectionLimit` items, which is [50 by default](https://github.com/reduxjs/redux-devtools/blob/main/packages/react-json-tree/src/index.tsx#L48). ```ts let sparseArrayBroken: string[] = []; sparseArrayBroken[50] = "this causes a crash"; <JSONTree data={sparseArrayBroken} /> ``` Reproduction here: https://codesandbox.io/p/sandbox/ns6q5j https://github.com/user-attachments/assets/9f7bce8f-33ea-4aeb-9db6-4b6ad8fa2f7c