const items = ["Cars", "Cars", "Smartphone", "Cars", "Tablet"]; const uniqueItems = [...new Set(items)];
["Cars", "Smartphone", "Tablet"]