Comment faire des couleurs aléatoires dans Python Turtle

import turtle, random
colors = ["green","brown"]
theColor = random.choice(colors)
turtle.color(theColor)
Call of Doody