I've been attempting to modify the format of this object for quite some time:
"Obj":{"0":"value1","1":"value2"}
My desired output should be like a basic array:
"Obj": ["value1","value2"]
Is there an easy method to achieve this transformation? Appreciate any help in advance