That's strange. lowgas, that code creates a two dimensional array. the 'returned' objects are in the second level 0,0 0,1 and 0,2
This is my exact code -
var arResults = new Array();
var queryArray = new Array();
queryArray[0] = '2211-1820-28-034';
queryArray[1] = '2211-1820-28-033';
queryArray[2] = '2211-1820-28-032';
function getParcel(queryArray) {
var i = 0
for (i = 0; i <= 2; i++) {
findParams.searchText = queryArray;
findTask.execute(findParams, taskCallBack);
}
}
function taskCallBack(taskResults){
arResults.push(taskResults);
}
Very odd.