I have this
{ "1": { "Split": { "result": "first_image" } }, "2": { "Split": { "result": "second_image" } } }
I tried .[].Split.result but it gives be below result;
"first_image""second_image"
but I want below output
I want the below output
["first_image","second_image"]