First create an empty list called numbers. Then initialize a counter i by assigning it to a value of 1. Next write a for-loop that uses fave as the loop variable (i.e., item in the template) and your top ten list as the iterable. The output of your code should look similar to the following (but with your favorite items, not mine). For each pass of the loop, append the counter i to the numbers list and then use augmented assignment as discussed in class to increment the value of the counter by 1.