Array size exceeds maximum limit

I have a function that return a variant value which is an array. I tried to assign that value, to a variable which is a variant type too. When I execute the program, it appears the following error: “array size exceeds maximum limit”. I saw in help of lotusscript that an array has a limit of 64k. Can I change this limit, because sometimes the function returns an array with a bigger size than 64k?

Function GetSegmentData(int segIndex) as Variant

dim segmentData as variant

segmentData = GetSegmentData(1)