Swift - Loops
You have a dictionary of student names and their scores:
Using a for-in loop, how do you print only the names of students who scored above 80?
let scores = ["Alice": 85, "Bob": 92, "Cara": 78]
Using a for-in loop, how do you print only the names of students who scored above 80?
