How would you spawn an actors right next to each other?

You will have to use a for loop and increment the vector. You could start with a vector (0,0,200) or something and in each iteration of the for loop, you just add

ForLoopIndex * 10 + Vector.X

So you have (0,0,200) -> (10,0,200) -> (20,0,200) etc.