I recently made a post about issues I was having with the JSON Converter and JSON Parser returning [object Object] when creating an array. I was getting the same thing when created an array variable and hardcoded the array data, for example:
[{ "id":"1", "color":"Red" },{ "id":"2", "color":"Yellow" },{ "id":"4", "color":"Blue" }];
And the results are: [object Object]+^+[object Object]+^+[object Object]
Then yesterday when I was working on it, it started returning an array that I could access individual rows and columns using array[i]["color"].
Now today, when I opened it up and ran it, I'm getting the same object Object issue is had before and I hadn't changed anything. Did something not get loaded correctly? I tried running it locally and remote with the same results. Very frustrating.