Could someone please show me how this work:
_rndnum = round (random 3) + 4;
This returns 1+4=5 , 2+4=6, 3+4=7 ??
and that:
_rndnum = floor(random 7);
This returns 1,2,3,4,5,6 ??
Is that right?
I try to search about my self but idk even how i should call it.