How would I append an array to the cells of a table?

How would I append an array to the cells of a table?

var data = [
    addStudentData("Nic B", "nicb1", "secret", "1", "en"),

$("table.table tr td").append(data);


Here is the copy of my JSFiddle thus far:  http://jsfiddle.net/nicboutte/ac1yyjoq/1/

-Thanks