Add uniq() to operate on a list and return a list with the unique values from the original list. Example list = {1,2,3,4,4,4,5,5} llist.uniq() returns {1,2,3,4,5}