I'm trying to make a card game. I'm using the following code to draw a random card
iCard=random() % 55;
but icard is always starts out with 28. Seems like it gives back the numbers in the same order.
is there a way to get a diffrent random number each time the function is first called????