Hi All,I have a requirement to build a two dimensional array and populate with values from a raw sql query:[code]List <String[]> result = new ArrayList<String[]>();String[] rowresult = new String[2];rowresult[0] = "info";rowresult[1] = "taxon";result.add(rowresult);[/code]But I am having problems rendering this (in the scala.views) I have tried adapting ArrayList[] with no success. Any suggestions?Thanks