I try to iterate over a dictionary with js syntax, but apparently Object.entries() doesn't exist on Ads-script.
Object.entries()
Is there a smart way instead of 2 for loops?
Object.entries(results).map(function(a) { return a[0] + " " + a[1];}).join('<br>')