OutOfRangeException..Root.OutOfRangeExceptionConstructs new OutOfRangeException which is thrown when an illegal range was used (indexes and string to number conversions).
Parameters: any number of String type variables
Return value: new OutOfRangeException
NativeCallable, Callable
auto arr.=(Array(3, "x");
arr[7].get();
auto str.=("abc");
str.pushBack("");
auto bigNumber.=("99999999999999999999999999");
log(bigNumber.toInt());