Hello World! I'm talking about timer events in Alice3. I have a scene with water and an ice floe and I'm going to add a baby penguin. I need to move him up a little bit so that he's standing on the ice floe. What I want to do is have him, at random intervals, say "Help!" I'm going to go to add event listener and add a time listener. For right now I'm just going just put in a 2.0 Each time that timer goes off, I'm going to have the penguin say "Help!" When we run this, every 2 ms. the penguin says "Help!" I want that to seem a little more natural, so instead of a two I'm going to pick a random value. Let's say from two for the first value and 10 for the second value. And then when I run it, at random intervals, the penguin will say "Help!" That looks fairly random. We can make this fun, we could actually have an array of things he says and have him say them, pick one of those randomly. We could make a shark circling around and make this an interesting program using the timer event. That's it.