array of integer => 1st index 0 , last is size-1
var
A, B: array of Integer;
begin
SetLength(A, 1);
A[0] := 1;
B := A;
B[0] := 2;
end;
procedure MyProcedure(MyArgs: array of integer; n : integer);
PS: array[2..5] of integer signifies an array with the 1st index "2" and...