I'm studying TypeScript.
I had a question while studying
const arr = [['192.168.0.1', 1234], ['192.168.0.2', 5678], ...];
How do I include different types in a two-dimensional array like the one above?
It would be nice to use 'any', but I don't recommend it in the official documentation.