myList = [Hallo, tschüss, siehe ya, später] phrase = myList [1]

mylist = [“hello”, “bye”,”see ya”,”later”]
    myphrase = mylist[1]
    
Fair Fowl