Create a 2x3 matrix (2-dimensional array) where each element consists of two indices that correspond to it. So elements of this array are strings denoting the indices of each element.
For example, the second element in the first row should be a string "[0][1]".
For a 2x2 array, it might look like that:
| [0][0] | [0][1] |
| [1][0] | [1][1] |
You should output a similar matrix, only 2x3, using the function contentDeepToString().
Tip: Remember that indexing starts with 0.
Tip: You need a 2-dimensional array, not 3-dimensional. The [0][0] is just a string, not an array