Array 2 using blueprint

hi, how i use a 2D table using blueprint
i c/c++ i do like that:

string myArray[2][2];

myArray[0][1] = “brother”;
myArray[0][2] = “father”;
myArray[1][0] = “mom”;
myArray[1][1] = “sister”;

how i can do the same thing with blueprint ?

thank you

Blueprint doesn’t have multi-dimensional arrays.

You could, if you really have an issue with it, make a struct of two strings, and then have an array of that.

But rather than have all the mess that will come with accessing that array, it’s easier to just have two arrarys.