Yes, you can put links or anything into a javascript array (use the real href values for you):
var breadcrumb = [
"<a href='about.html'>About</a>",
"<a href='test2.html'>Test2</a>",
"<a href='test3.html'>Test3</a>",
"<a href='test4.html'>Test4</a>"
];
If by printing you mean writing them to the page - I don't think this has anything specific to do with aspx since the array is in Javascript. You could do this:
for( var index = 0; index < breadcrumb.lengh; index++ ){
document.write("<div>" + breadcrumb[index] + "</div>" );
}
Or you could use jQuery for more elaborate DOM manipulation to add your links to the page.
var breadcrumb = ["<a href =\"/about/\">About</a>"]createElementto make a link, set the address, then add it to the array.