Hi,
I have recently started building an Alexa Skill and have found it really easy to work with.
Currently, when the user makes a request to the skill I am developing, the app gathers a list of 5 or so audio clips it wants to play back to the user. The app returns the first one, and persists the other 4. When the 'AudioPlayer.PlaybackNearlyFinished' request is executed, the app the pops one of the persisted list and returns it. It does this until the list is empty.
My question is, is there a way I can return the entire list of audio files on the first request, and Alexa can them stream them in the correct order? I have noticed the `directives` prop is an array, so I am assuming this is possible?