<% var a =[1,3]; var b = {}; a[0]=2; b["a"]="hello"; //c is array c[0]=99; d[0][0]=99; %> ${a[0]}-${b["a"]}-${c[0]}-${d[0][0]}