WordArray: {
    create(words?: X64WordArray[], sigBytes?: number): X64WordArray;
}

Initializes a newly created word array.

(Optional) An array of CryptoJS.x64.Word objects.

(Optional) The number of significant bytes in the words.

var wordArray = CryptoJS.x64.WordArray.create();

var wordArray = CryptoJS.x64.WordArray.create([
CryptoJS.x64.Word.create(0x00010203, 0x04050607),
CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f)
]);

var wordArray = CryptoJS.x64.WordArray.create([
CryptoJS.x64.Word.create(0x00010203, 0x04050607),
CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f)
], 10);