in reply to Re: How do I shuffle an array?in thread How do I shuffle an array?
use Math::Random::MT::Auto 'shuffle'; my @cards = 0..51; shuffle(\@cards); [download]