I am getting data in JSON format from an ajax call. I want to convert it into an array to be used in the js script.
 {
  "results":[
  {
     "activity":"A12345"
  },
  {
     "activity":"B12345"
  }]}
Array that I want to have
arr = ["A12345", "B12345"]
I tried the following steps -
var response = JSON.parse(data); 
var arr = response`enter code here`.results; 
var newArr = Object.entries(arr);
alert("New" + Object.values(arr));
The result that I am getting is
[object Object], [object Object]
How can I get the values from these objects and store it in an array. Please help!
