All I knew was that I was referring to the example given, but I’m having trouble with the exact depth. I thought it was similar to that in the example, or it would have been all of them together with the required amount of depths.
I think the initial wording may be a bit confusing as it says
The deep array is nested 2 levels deep
But I think it means the string "deep" is nested two levels deep
So, in the challenge all primitive values are already 2 levels deep as the entirety of the first level is comprised of arrays. It wants you to create even more nested values which specifically on the third level of nesting is the string "deep", and then you also have a 4th and 5th level of nesting each with their own required values "deeper" and "deepest"
[
'This string is on the first level',
[
'This string is on the second level'
],
]