Create a function that takes a list of items, removes all duplicate items and returns a new list in the same sequential order as the old list (minus duplicates).
remove_dups([1, 0, 1, 0]) ➞ [1, 0]
remove_dups(["The", "big", "cat"]) ➞ ["The", "big", "cat"]
remove_dups(["John", "Taylor", "John"]) ➞ ["John", "Taylor"]