LOCAL ByteArray() AS BYTE
REDIM ByteArray(2)
ByteArray(0) = &H31
ByteArray(1) = &H32
ByteArray(2) = &H33
REDIM ByteArray(2)
ByteArray(0) = &H31
ByteArray(1) = &H32
ByteArray(2) = &H33

PS: Without using CHR$.
IN VB6
We actually can do it easily.
DIM ByteArray(2) AS BYTE
ByteArray(0) = &H31
ByteArray(1) = &H32
ByteArray(2) = &H33
Print ByteArray
Print StrConv(ByteArray, 64)
ByteArray(0) = &H31
ByteArray(1) = &H32
ByteArray(2) = &H33
Print ByteArray
Print StrConv(ByteArray, 64)
Comment