Hello, I want to sort numbers in an array. for example : #include <array.au3> local $array[4] = ["14","23","3","2.50"] _ArraySort($array) _ArrayDisplay($array) The result is  14 2.50 23 3 Is it normal ? Is there a way to have the correct sort ? 2.50 3 14 23 Thank you.