reverse() can flip the list around. The reverse() method doesn't return any value. It updates the existing list. Here's an example:

x = ["a", "b"]

x.reverse()

["b", "a"]