Task
📝 **Task:** Given \`keys = ["a", "b", "c"]\` and \`values = [1, 2, 3]\`, build a dict using zip and print it. Expected: {'a': 1, 'b': 2, 'c': 3}
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.