TANKS! - Randomly selecting one of the 4 predetermined spawn point on the networking demo.

I would like each tank to be placed at one of the random spawn points at the start of each round, can anyone help?

thanks in advance.

code:
using System;
using UnityEngine;

[Serializable]
public class TankManager
{
// This class is to manage various settings on a tank.
// It works with the GameManager class to control how the tanks behave
// and whether or not players have control of their tank in the
// different phases of the game.

public Color m_PlayerColor; // This is the color this tank will be tinted.
public Transform m_SpawnPoint; // The position and direction the tank will have when it spawns.
[HideInInspector]
public int m_PlayerNumber; // This specifies which player this the manager for.
[HideInInspector]
public GameObject m_Instance; // A reference to the instance of the tank when it is created.
[HideInInspector]
public GameObject m_TankRenderers; // The transform that is a parent of all the tank’s renderers. This is deactivated when the tank is dead.
[HideInInspector]
public int m_Wins; // The number of wins this player has so far.
[HideInInspector]
public string m_PlayerName; // The player name set in the lobby
[HideInInspector]
public int m_LocalPlayerID; // The player localID (if there is more than 1 player on the same machine)

public TankMovement m_Movement; // References to various objects for control during the different game phases.
public TankShooting m_Shooting;
public TankHealth m_Health;
public TankSetup m_Setup;

public void Setup()
{
// Get references to the components.
m_Movement = m_Instance.GetComponent();
m_Shooting = m_Instance.GetComponent();
m_Health = m_Instance.GetComponent();
m_Setup = m_Instance.GetComponent();

// Get references to the child objects.
m_TankRenderers = m_Health.m_TankRenderers;

//Set a reference to that amanger in the health script, to disable control when dying
m_Health.m_Manager = this;

// Set the player numbers to be consistent across the scripts.
m_Movement.m_PlayerNumber = m_PlayerNumber;
m_Movement.m_LocalID = m_LocalPlayerID;

m_Shooting.m_PlayerNumber = m_PlayerNumber;
m_Shooting.m_localID = m_LocalPlayerID;

//setup is use for diverse Network Related sync
m_Setup.m_Color = m_PlayerColor;
m_Setup.m_PlayerName = m_PlayerName;
m_Setup.m_PlayerNumber = m_PlayerNumber;
m_Setup.m_LocalID = m_LocalPlayerID;
}

// Used during the phases of the game where the player shouldn’t be able to control their tank.
public void DisableControl()
{
m_Movement.enabled = false;
m_Shooting.enabled = false;
}

// Used during the phases of the game where the player should be able to control their tank.
public void EnableControl()
{
m_Movement.enabled = true;
m_Shooting.enabled = true;

m_Movement.ReEnableParticles();
}

public string GetName()
{
return m_Setup.m_PlayerName;
}

public void SetLeader(bool leader)
{
m_Setup.SetLeader(leader);
}

public bool IsReady()
{
return m_Setup.m_IsReady;
}

// Used at the start of each round to put the tank into it’s default state.
public void Reset()
{
m_Movement.SetDefaults();
m_Shooting.SetDefaults();
m_Health.SetDefaults();

if (m_Movement.hasAuthority)
{
m_Movement.m_Rigidbody.position = m_SpawnPoint.position;
m_Movement.m_Rigidbody.rotation = m_SpawnPoint.rotation;
}
}
}

https://forum.unity3d.com/threads/using-code-tags-properly.143875/
Would make people more likely to help.

usually the way that I would do random spawns is:
create an array of Transforms (the spawns)
and generate a random number.

I didnt read the code as It was too hard without code tags.