Task
📝 **Task:** Use a dict comprehension to map each word in \`["cat", "dog", "fox"]\` to its length. Print the result. Expected: {'cat': 3, 'dog': 3, 'fox': 3}
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.