I'm attempting to assign various values generated by an outer loop to different variables and then utilize those variables as an array.
var code = [];
for (i = 0; i < 5; i++) {
code[i] = mp3;
}
Is there a way to access variables in this manner: code[1], code[2];