Second example ````python foo = ['hi'] print(foo) # Output: ['hi'] bar = foo bar += ['bye'] print(foo) # Output: ['hi'] ***#THE OUTPUT HERE SHOULD BE ['hi', 'bye']*** print(bar) # Output: ['hi', 'bye'] ````