to give me a numberic output instead of a alpha?
<%
Dim intCounter, intDecimal, strTicket
For intCounter = 1 To 6
Randomize
intDecimal = Int((26 * Rnd) + 1) + 64
strTicket = strTicket & Chr(intDecimal)
Next
%>
Also if I remove the word randomize, will it give me the numbers in consecutive order?