When you want to return a single value from a function, you write an arrow and a data type before the opening brace: func isShinobi ( name : String ) -> Bool { name == "Naruto" || name == "Sasuke" || name == "Sakura" } That compares a name against a list of known shinobi names, returning true or false . But what if you need to return two or more values? Let's explore the options. 🚫 Attempt 1 — Using an Array Say we want a function that sends back a character's first and last name: func getCharac