It creates an Aliased WORD variable, inside the BYTE array.

When you assign a value to the WORD variable, it puts both BYTEs in the array in a single operation.

MyWord = $1234

will make MyByteArray look like this

[00, 00, 00, 34, 12, 00, 00, 00, 00, 00]

HTH