I am trying to convert a string array into an arraylist. However, when I use this code to print the list, it returns values like this @3fec1b24. Could anyone help me with this?
ArrayList<String[]> dataList = new ArrayList<>();
dataRow = new String[nc];
dataList.add(dataRow);