I'm not familiar with the terminology, but I'd like to simplify it:
var topicList1 =['hello','hallo', ..., 'hej'];
var topicList2 =['a','b',...,'c'];
...
var topicList999 =['x,'y',...,'?'];
So I want to access the data like list[para1][para2]
, is there an existing data structure for this or do I need to create a complex function with the lists? Keep in mind that sizes of lists vary.