If I have a Json array object that looks like this:
[
{"values here"},
{"values here"},
{"values here"}
]
And I want a Json array object that looks like this:
{
"key1":"value1","key2":"value2","key3":"value3"
:[
{"values here"},
{"values here"},
{"values here"}
]
}
Is it possible for me to insert another json object at the front of all the elements in the array and encloses them.