I have two list which their values match with each others positions. So Jon's score would be 123 and Bede's would be 11 etc.
name = ["Jon", "Bede", "Joe"]
score = [123, 11, 43]
How is it possible to order the the list so that it outputs the smallest score first ascending to the highest score, each time outputting the name of the person who scored it.