Distructive methods are used to change the object value permanently by itself using bang (!) operator.
sortreturns a new array and leaves the original unchanged.sort!returns the same array with the modification.
The ! indicates it’s a destructive method. It will overwrite the current array with the new result and returns it.