isaiahjohnson2883 isaiahjohnson2883 21-03-2024 Computers and Technology contestada What is the result of this code?my_first_list = ['a', 'b', 'c']my_second_list = ['d', 'e', 'f', 'g']my_third_list = my_first_list - my_second_list my_third_list.extend('h')print (my_third_list[2:6])