Error: Identifier not found "RandomRange"
function RandomRange(Low, High: LongInt) : LongInt;begin if High < Low then Result := High + Random(High - Low) else Result := Low + Random(Low -High);end;