I have a bunch of arrays, and a bunch of folders with files I'm trying to get to. The items in the arrays correspond to the file names and the array names match the folder names.
So I have
var myArray = ['my', 'file', 'here'];
var myArray2 = ['some', 'more', 'files'];
& similar as audio files. For example `myArray/my.mp3'
I'm trying to create a string like that dynamically. I wanted to somehow convert my array names to strings but apparently that can't be done. Any other solutions much appreciated.