Lists and Array
var count = 0;
var text = '';
Array.prototype.forEach.call(List, function (element) {
count = count + 1;
if (element.field) {
text += '<p><label><strong> Text:</strong></label>' + element.field + '</p>';
}
});