Think about your answer, then reveal below.
Model answer: A set is defined by membership — which elements are in it. The set {A, B, C} and {C, B, A} have the same members, so they are the same set. A sequence is defined by position — which element is first, second, third. The sequence A, B, C has A in position 1, while C, B, A has C in position 1 — they are different. Order matters in sequences because many real-world things depend on order: steps in a recipe, digits in a number, letters in a word (TAR is not RAT).
This distinction — between unordered collections (sets) and ordered collections (sequences) — is foundational in mathematics and computer science. Students who grasp this early will understand why the order of operations matters in arithmetic, why function inputs must be ordered, and why algorithms require specific step sequences.