What do you think would happen in this code?
using UnityEngine;
using System.Collections;
public class RandomRangeTest : MonoBehaviour
{
void Update ()
{
int test = Random.Range (0, 3);
if (test == 3)
print ("I was wrong");
else
print ("Why it never reachs 3?");
}
}