Hi I'm a beginner in Power Automate and I am pulling my fields from a connector that uses json. If two items are returned it puts them together like Donald DuckMickey Mouse with no space or comma in between them. I'd like the output to appear as Donald Duck, Mickey Mouse.

The condition has this: length(outputs('Get_each_gift_details')?['body/soft_credits'])
Then I get the constituent ID for the person and then the Name of the person.
The json is like this:
"soft_credits": [
{
"id": "123456",
"amount": {
"value": 10
},
"constituent_id": "0010",
"gift_id": "8888"
},
{
"id": "123333",
"amount": {
"value": 10
},
"constituent_id": "0011",
"gift_id": "8888"
}
]
Thanks for any help!
Carol