Here is some output that I get from firebug
<div id='div_undefined'>[{"Region":"AD","Date":"","ArticleID":"abc-345"}, {"Region":"CD","Date":"","ArticleID":"abc-345"}]</div>
You can see the JS Object array in there and notice the div_undefined. If you look at the funciton below I know that my object is defined because it is printing out. Why would Items[0] return undefined when I try to access ArticleID
here is the code from my function
function myFunc(Items){
var item = Items[0];
Write("<div id='div_" + item.ArticleID + "'>" + Items + "</div>");
}