ok, hopefully someone can explain to me why

random(6)+1//which I understand is now depricated

has been exchanged with this:

Math.ceil(Math.random()*6+1)//hope I got that right

isn't the first one easier?

Adam