I am trying to append the elements in an array to an existing (empty) array
if(attributes.list != "") attributes.array.append(attributes.list.ListToArray());
What I get is something like
Is there a way to do this without having too loop through each item?

