Put movie clips in an array and then place them using JavaScript
I used to do AS3 and am new to JavaScript. I want to put my movie clips into an array (so later I can randomize their order) and choose some of them to display. In AS3 I’d put them in an “Assets” layer so they aren’t on the screen, instantiate them, put them in an array, and then place them with “addChild.” How do I do this in Animate using JavaScript? All I have so far is:
var answer1Array = ["up1", "down1", "left1", "right1"];