The data is being fetched from the API and here is the response object:
{
"abc": [{
"xyz": "INFO 1",
"pqr": "INFO 2"
},
{
"xyz": "INFO 3",
"pqr": "INFO 4"
}
]
}
We are looking to extract the following values from the response:
xyz, INFO 1
xyz, INFO 3
Can you assist in retrieving these specific values from the response object?