using jquery $.each
you can access all data and also set in table like this
$.each(data, function (index, item) {
var eachrow = ""
+ "" + item[1] + " | "
+ "" + item[2] + " | "
+ "" + item[3] + " | "
+ "" + item[4] + " | "
+ "
";
$('#tbody').append(eachrow);
});