Swift - Loops
Which of the following best describes the behavior of this Swift code?
let names = ["Anna", "Bob", "Cindy", "David"]
for name in names where name.count == 4 {
print(name)
}