Extracted text: Let I be a list of integers. Below, there are four expressions that involve the list I. Without even knowing the contents of l, match the expressions to the lists that were evaluated from them. [sorted (1) [i] for i in [8,7,6,5,4,3,2,1,0]] [97, 91, 63, 58, 49, 36, 22, 18, 12] [i[0] for i in enumerate (1)] [0, 1, 2, 3, 4, 5, 6, 7, 8] [i**2-13*i+12 for i in 1] [0, 49, 112, 148, 160, 251, 348, 366, 388] [i%8 for i in l] [1776, 3162, 840, 0, 7110, 8160, 102, 210, 2622] [sum (1[:i]) for i in range (len (1))] [1, 7, 4, 4, 3, 1, 2, 6, 2]