Hello world. I'm talking about counting in Alice3. I have a clown fish, And I would like him to count 1, 2, 3. I'm going to use a count loop, And the way the count loop works is It declares an integer, indexA in this case, with an initial value of zero. We check if indexA is less than three And if it is we execute all of the statements inside the loop. At the end of the loop we execute the statement indexA plus (++) which adds one to the value of indexA. Inside the loop going to have the clown fish say absolutely nothing for the strng and then say plus integer, indexa. So, let's run that. The clown fish says 0, 1, 2. But I really wanted the clown fish to say 1, 2, 3, instead of 0, 1, 2. But I can't change that from starting with zero. So I'm going to add a variable and make it integer and call it num. And the initial value is indexA And then I'm going to say +1. And then, instead of having to say him say indexA, I'm going to have him say num. So, le's run that and the clown fish says 1, 2, 3. And that's exactly what I wanted. And that's it!