# your code goes here

x = ['one', 'two', 'three', 'four', 'five', 'six']
z = []

while len(z) != len(x):
    y = random.choice(x)
    if y not in z:
        z.append(y)
print()
print(z)

x = ['one', 'two', 'three', 'four', 'five', 'six']
z = []
for i in range(len(x)):
    y = random.choice(x)
    if y not in z:
        z.append(y)
     
    
print()
print(z)