import random
i = 0;n = 6
nums = []
while i < n:
key = random.randint(1, 10)
if key not in nums:
nums.append(key)
i += 1
执行该程序段后, nums 值可能的是( )