xxxxxxxxxx
using UnityEngine;
//not my code example, its from phind, great search engine for devs and i recommend, this code example is for me and others who need it
public class ExampleClass : MonoBehaviour
{
public GameObject[] prefabs;
public Transform[] spawnPoints;
void Start()
{
// Select a random spawn point index
int randomIndex = Random.Range(0, spawnPoints.Length);
// Select a random prefab index
int randomPrefabIndex = Random.Range(0, prefabs.Length);
// Instantiate the selected prefab on the selected spawn point
Instantiate(prefabs[randomPrefabIndex], spawnPoints[randomIndex].position, Quaternion.identity);
}
}