Code School Support said
Hi Andrew! Ruby doesn't provide any method like sort!?, and even though you could probably write your own, it's not really a good idea to create a method like that. If you want to check if changes were made in calling sort!, you can create a method like sorted? which could contain sort! and compare the original array to the sorted array.