Implement the sqrt method that computes the square root of a given number. If a negative number is passed the method should throw a java.lang.IllegalArgumentException with the message "Expected non-negative number, got ?", where ? is the passed negative number.
Use Math library to evaluate the square root.