Create a new table results with three columns in this specific order: Opponent Name, SBCC Score, Opponent Score. You will have to create the SBCC Score and Opponent Score columns. Use the function game_totals you just defined in the previous question for this problem. Hint: If you want to apply a function that takes in multiple arguments, you can pass multiple column names as arguments in (). The column values will be passed into the corresponding arguments of the function. Take a look at the python reference for syntax. Tip: If you're running into issues creating final_scores, check that SBCC_scores and opponent_scores output what you want.