Declaration MyArray:array[1..7] of string;

Dear TMS-Support,
I am currently porting existing Scripts from DreamScript to TMS-Scripter.
In DreamScript we had declared array's like this:
var
MyArray:array[1..7] of string;

In TMS-Scripts we had to rewrite this script to
var
MyArray : variant;
begin
MyArray:= CreateArray(1,7);

In TMS-Scripter v7.13 you introduced the possibility to declare
array as normal, but it only works for [0..

This is ok and works:
MyArray:array[0..6] of string;

This gives a Syntax error:
MyArray:array[1..7] of string;
Could you please make this work as well?

Thank you,
Samuel Herzog