I have a json response from backend like:
JSON:
[
  ["Bondi Beach",-33.890542,151.274856,4],
  ["Coogee Beach",-33.923036,151.259052,5],
  ["Cronulla Beach",-34.028249,151.157507,3],
  ["Manly Beach",-33.80010128657071,151.28747820854187,2],
  ["Maroubra Beach",-33.950198,151.259302,1]
]
How can I parse it to an array like:
[
  ['Bondi Beach', -33.890542, 151.274856, 4],
  ['Coogee Beach', -33.923036, 151.259052, 5],
  ['Cronulla Beach', -34.028249, 151.157507, 3],
  ['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
  ['Maroubra Beach', -33.950198, 151.259302, 1]
]
 
     
    