Hi All!
I want to build an HTML table from a Sharepoint list and then paste it into an email.

The problem is that one of the columns in the Sharepoint list contains multi-selection. To extract value from multi-select I use the expression:
first(body('Get_items')?['Value'])?['Region']

But when I run a flow in a multi-select column I get the following:
[{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":0,"Value":"Armenia"},
{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":4,"Value":"Kazakhstan"},
{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":5,"Value":"Kyrgystan"},
{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":11,"Value":"Uzbekistan"}]

How to create HTML table in such a way that I see multi-select values in the corresponding column without additional information? In my case only Armenia, Kazakhstan, Kyrgyzstan, Uzbekistan without [{"@odata.type":"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference","Id":0,"Value": 🙄