I am making a deck of cards and then trying to shuffle them.

Here is my class for a card.


public class Card{
int rank,suit;

public Card(int s, int n){
rank = n;