运行下列这段程序,正确的输出结果是?( )
LS = ["apple", "red", "orange"]
def funb(a):
LS.append(a)
funb("yellow")
print(LS)
["apple","red","orange"]
["apple","red","orange","yellow"]
[]
["yellow"]