Hey there, I have a string that looks like this:
[{"list":"Gross Motor Skills""value":"8"}{""list":"Sorting""value":"8"}
{""list":"Grouping""value":"8"}{""list":"Drawing""value":"8"}
{""list":"Observations""value":"6"}{""list":"Writing""value":"7"}]"
My goal is to remove all the extra information and format it into an array like this:
Gross Motor Skills 8
Sorting 8
etc.
I've tried using splice and split methods but couldn't figure it out. Can anyone assist me with this? Thanks in advance.