What is the result of the following code snippet? ```python x = [1, 2, 3] x.append([4, 5]) print(len(x)) ```

Explanation:

The append() method adds the entire list [4, 5] as one element, so the length becomes 4.