Task
📝 **Task:** Write \`first_truthy(values)\` returning the first truthy item from a list, or \`"none"\` if all are falsy. Print \`first_truthy([0, "", None, "Hi", 42])\`. Expected: Hi
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.