The question i'm working on asks "Given the variables name1 and name2 , write a fragment of code that assigns the larger of their associated values to first" ('first' in bold letters)
(NOTE: "larger" here means alphabetically larger, not "longer". Thus, "mouse" is larger than "elephant" because "mouse" comes later in the dictionary than "elephant"!)<--- as it adds under the question
So far i have this code "= (name1, name2)" and the error message is telling me that i may need to insert something before and after the = sign. What could that be?