Assuming I have an object array:
array=[
{
"Item": "A"
"Quantity" : 2
},
{
"Item": "B"
"Quantity" : 7
},
{
"Item": "C"
"Quantity" : 1
}
]
I am wondering what would be my options to get the following string output :
(A, 2), (B, 7), (C,1)