for (let i = 0; i < vms.length; i++){
for (const [key, value] of Object.entries(vms[i])){
System.log(key, value);
}
}
I've encountered an issue with my code where I'm getting the "missing ; after for-loop initializer" error. It's important to note that "vms" represents a collection of dictionaries in this scenario. Despite trying to use var as suggested by others before, the problem persists and I'm unsure of what steps to take next.