package quickHit;
import java.lang.Math;
public class Game {
private Player player;
public static int[] randoms(){
Random random = new Random();
int temp1,temp2;
int send[] = {0,1,2,3,4,5};
int  strLength= send.length;
int returnValue[] = new int[5];
for(int i=0;i<6;i++)
{
temp1 = Math.abs(random.nextInt())%strLength;
returnValue[i] = send[temp1];
temp2 = send[temp1];
send[temp1] = send[strLength-1];
send[strLength-1] = temp2;
strLength--;
}
return returnValue;
}
}