how can i add comma after each object and convert into array. here's my response data
{"url":"example.com/john","age":"32"}{"url":"example.com/mike","age":"42"}
i want this
[{"url":"example.com/john","age":"32"},{"url":"example.com/mike","age":"42"}]
i tried with regex but it's converting data into string but i want to render this data
JSON.parse(text)to convert it to the array.