Help Spawning Actors From Array Down Y Axis

I have a list of actors that I want to spawn down the Y axis in consecutive order. I’ve already setup the array and specified the first spawn location. Just not sure how to have the next actor spawn directly below the previous.

Been banging my head against this one for awhile. Any help is appreciated!

using an array for loop, it can cycle through all the array elements until the “array length” and for each step in the array you just increase your Y axis offset but the current array position.

Or you just spawn them along a spline.

Worked perfectly, thanks for your help brother!!