If you have a list that has only one element, and you call the pop method, an exception will be raised. For example, the following will raise an exception ``` ruby list = List.new(1) list.pop ```