Assume that you have a data structure of the following:
A list of hockey players. Each hockey player is a list that includes their Rank (int), Name (String), Team (String), Age (int), Goals (int), Assists (int), Points (int) in that order.
Write a function called most_goals that takes in the list of hockey players and returns the name of the player with the most goals.
solve using python
