Is it possible to access data in Data Table Row as array

I tried it real quick and it didn’t work. But here is an explanation of what I want:

Each row returns the following data:
[Character, NextCode, English, Dutch]

I can only access the individual values as shown in picture 1, by splitting the structure pin.
But I want to be able to access them via an array called Languages. To describe it in C++:

Instead of doing:

 new varEnglish = RowDataOfRow("rowname").Get("English")
 new varDutch = RowDataOfRow("rowname").Get("Dutch")

I want to do:

new language[] = RowDataOfRow("rowname").GetAllData 
// results in language[] == [Character, NextCode, English, Dutch]

 new varEnglish = language[2]
 new varDutch = language[3]

Edit: added next part:

So that I eventually can have something like to easily increase the amount of languages and switch between them:

int currentLanguage = 3;

new varLanguege = language[currentLanguage]

Hope this clears it up