//BeanShell Script Color[] colors = {Color.red,Color.blue,Color.green, Color.gray,Color.black,Color.orange,Color.yellow}; for(int i = 0;i < 80; i++){ int x = (int) (Math.random() * 640); int y = (int) (Math.random() * 480); int icolor = ((int) (Math.random() * colors.length)); int thickness = ((int) (Math.random() * 10)) + 1; turtle.setColor(colors[icolor]); turtle.setTrailThickness(thickness); turtle.move(x,y); }