I am new to coldfusion. How can I set 32 digit number to variable and use for further calculation. I tried as
<cfscript>
randStart = 1;
randEnd=99999999999999999999999999999999;
ranValue = #randRange(randStart, randEnd, "SHA1PRNG")# ;
</cfscript>
But it throws an error as
Cannot convert the value 1.0E32 to an integer because it cannot fit inside an integer.
Please suggest.