If I have an array of collections with key-value pairs, what's the easiest way to transform this array so that only certain keys (and their values) are preserved in the array?
For example, if this is the output of a HTTP request module:

how can I transform this data so that within each collection I have only the value and label keys?
I'd like to store the transformed array in a variable so that I can later "search" within that with the map function.
Thank you!