How to make random combinations script Ex. test.txt is number combinations 01 02 03 01 02 04 01 02 05 test.bin coming random combinations 01 02 05 01 02 03 01 02 04 $sData = FileRead(@ScriptDir & "\test.txt") $random = // random code here!!! How? $hFile = FileOpen(@ScriptDir & "\test.bin", 18) FileWrite($hFile, $random) FileClose($hFile) Eng bad