How to assign individual vector3 positions to each element in an array c#

Hello,

I have an a prefab which instantiates 6 times through a game object array.

I need to assign a different position to each element as well because at the moment they all appear in the same place.

I cant figure out how to do this in a simple way. Any suggestions would be a massive help!

Thankyou

Make an array like:

public gameObject[] objects = new gameObjects[number];

void Start(){
	objects[0] = Vector3(x,y,z);
}