Whatever message this page gives is out now! Go check it out!
getCSPNonce(): Returns the nonce value. getCSPNonce(boolean returnAsString): Returns the nonce value as a string like 'nonce=<nonce_value>' that can be directly used in a cfheader tag or in a <script> tag.<cfoutput>
<script type="text/javascript" nonce="#GetCSPNonce()#">
alert("Message")
</script>
</cfoutput><cfoutput>
<script type="text/javascript" #GetCSPNonce(true)#>
alert("Message");
</script>
</cfoutput>