Currently in my script I have the following code to create a random variable between 1-4
int randomDoor = 0;
randomDoor = Random.nextInt(1, 4);
Every time I start my script it will only generate 1 as the number, every single time. As its not a huge issue that stops my script running, I have...