Programming Activity 2 - Guidance ================================= Part 1 ------ In the starter code, tail should be used to keep track of the last item in the linked structure, as the items are added to the end one-by-one in a loop. Part 2 ------ Start at head and traverse through the linked nodes. Print each node's data value as you encounter it. Programming Activity 2 - Expected Output ================================= The array structure: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] The linked structure: 1 2 3 4 5 6 7 8 9 10