determining the length of multi-array

Hi… I would like to know if how can i find a way to count the length of the arrays in array or array (multidimentional array) I mean if i have

map = new int[][]{
{0,0,0,0,0,0,0,0,0,0,0,0,0,0},
{0,2,2,2,2,2,2,2,2,2,2,2,2,0}};

if i call map.length, it’ll return 2 for the original map array… how about the length of the arrays inside the array? how can I get 14?

u can get the length of each array using map[0].length, map[1].length, …