Retrieve the individual values in an array that is combined on next module call?

I have this issue. I need to use the generated_voice_id [0], [1] and [2] but on my next module, I can not select it, it all appears under “generated_voice_id” (which actually contain it all).

Which operator and how to use “generated_voice_id” to be sure to have the individual values?

Welcome to the Make community!

You can use the built-in functions map and get to access variables within an array.

For more information, see the function documentation in the Help Center, and complete the Make Academy as it is explained in further detail there.

Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —

Getting Started

Help Centre Basics

Articles & Videos

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

2 Likes

I used this : get(map(xx.thearray;keyvaluetoextract);1) to get the first item of the list.