Show navigationuniqFilter = uniqRemoves any duplicate elements in an array.INPUTOUTPUT{% assign my_array = "ants, bugs, bees, bugs, ants" | split: ", " %} {{ my_array | uniq | join: ", " }}ants, bugs, bees