What is the output of the following code? ```python x = "Hello, World!" print(x[7:]) ```

Explanation:

The slice x[7:] extracts the substring starting from index 7, which is "World!".