Instantiate prefab at transform array

I need help. i am trying to spawn a bullet transform at multiple transforms that is an array. so basically spawn prefab at a transform array. can anyone help me

I would need more information for a better answer, but i have an idea

You could make a for loop like this:

for (int i = 0; i < transforms.length; i++)
{
//Instantiate prefab at transforms*.position*
}
as i said i don’t have a lot of information, so you would need to change the “transforms[]” to the name of your array[].