Cryptographically random data

suggest change
// Create an array with a fixed size and type.
var array = new Uint8Array(5);

// Generate cryptographically random values
crypto.getRandomValues(array);

// Print the array to the console
console.log(array);

crypto.getRandomValues(array) can be used with instances of the following classes (described further in http://stackoverflow.com/documentation/javascript/417/binary-data#t=201607192101507088285) and will generate values from the given ranges (both ends inclusive):

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Web Cryptography API:
* Cryptographically random data

Table Of Contents
11 Arrays
12 Objects
14 Classes
16 Map
17 Set
24 Loops
27 Date
29 Scope
30 AJAX
35 Cookies
41 JSON
44 Fetch
45 Modules
46 Screen
54 Web Cryptography API
64 Console
68 Symbols
73 Modals
76 Events
86 Proxy
89 WeakMap
90 WeakSet
102 Tilde