[Solved] How to clear one list with values from another
It looks like you’ve confused yourself by adding arrays to lists. This effectively gives you another “layer”: You’ve got the list (l or l1), which contains an array, which contains some strings. The problem is you’re thinking of the lists as if they contained strings, when they do not. Let me comment your code to … Read more