how to get random number in unity code example

Example 1: random number generator unity

int num = Random.Range(min, max);

Example 2: unity random int

//If you use Int in the Random.Range() then it will
	//return an Int
	public int RanTimerHigh = 10;
    public int RanTimerLow = 1;

    void Start()
    {
        int RandomInt = Random.Range(RanTimerLow, RanTimerHigh);
    }

Example 3: random in unity

// random int
int num = Random.Range(min/*int*/, max/*int*/);
 // random float
float num2 = Random.Range(min/*float*/, max/*float*/);

Example 4: unity how to generate a random number

Vector3 position = new Vector3(Random.Range(-10.0f, 10.0f), 0, Random.Range(-10.0f, 10.0f));