I'm trying to build a flow which will get value from a choice field of multiple choices.
When the choice field gets returned it seems to be coming as an object(?)

Scenario: "When a file or item is modified > Get the Choice columns values, tehre could be up to 40 choices here.
My issue is that I can get the values but I CANNOT REACH and or Interact with the VALUE in the Object.
The value comes out like this:
[
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 1,
"Value": "ACO"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 2,
"Value": "ADE"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 4,
"Value": "ANI"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 5,
"Value": "BAL"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 6,
"Value": "BOE"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 7,
"Value": "CAR"
}
]
I want an APPLY TO EACH scenario where I get EACH value and can make an operation on that VALUE.
But how do I get that VALUE but how do I do this in powerautomate?