Hi @Mike2500,
Yes, we could take use of Compose Action to get the array elements.
And there are two ways in your situation.
First option:
(Assume the field that you would like to show is the Title field)
Add a compose Action, in the input box, copy and paste the following:
"@first(body('Get_items')?['Value'])?['Title']"
The first() function would get the first item of the Array, then using ?['Field'] to find the proper elements.
Second option:
Also add the Compose Action, and in the Input Box, copy and paste the following:
"@body('Get_items')?['Value']?[0]?['Title']"
Writing in this way would be able to find the other array item, in Microsoft Flow, the formula language is Windows Definition Language, and this language uses number to query the array item, start from 0.
So here the formula would also return the result as the previous one.
See screenshots:


Workflow Definition Language reference:
https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-workflow-definition-language
If you need any further help on this, please post back.
Regards,
Michael