I'm not so sure how to write this: I want to generate a random number from 0 to 2, then write an if
statement which executes specific code only 33% of the time.
This is what I tried to do:
if (rand(0, 3)=="2") { echo "Success" };
Thank you very much!