#!/usr/bin/python3 import random teams=['AVN', 'Desktop', 'Security', 'Systems'] order=random.sample(range(4), 4) for i in order: print( teams[i] )