Array

Can someone help me with array()?

this.pArray = [“zmx1.jpg”,“zmx2.jpg”,“zmx3.jpg”,“zmx4.jpg”,“zmx5.jpg”];

I have about 100+ images is there a way that it can increment the image and return each pArray separately (which is same as filling all the array out)?

ie.

this.pArray = [“zmx” + i + “.jpg”]

You can try

for (i=0;i<100;i++) {
          this.pArray* = "zmx" + (i+1) + ".jpg" ;
}

pom :asian: