Nesting TArray's inside TSharedRef

Also, another mistake you are doing is trying to access the FIRST value of an ARRAY using 1.
The first value is accessed with a zero index: myArray[0]! Indexes start from 0…