0019: Unknown array type

You did not specify the array type, or provided an invalid value (for example, a number).

Possible solutions: use a valid type name:

var
    $var: array 10 of Double // incorrect
    $var: array 10 of Float // correct
end

Last updated