In the first new story we create, we want the following to occur:
Story: escape, freakOut, freakOut, freakOut, apologize
So in this story the beetle will escape. Then slackerProm will be really surprised and freakOut multiple times. Finally, ringoBeetle will come out and apologize.
Let's begin creating this story!
Step 1: Make sure world is selected in the upper-left corner of the screen.
Step 2: Drag the escape method from the lower-left box into world.my first method.
Step 3: Drag the freakOut method into world.my first method three times.
Step 4: Drag the apologize method into world.my first method once.
If you press play, you should now be able to see your story. See how having freakOut in its own method made it really easy for it to happen three times? If freakOut was not it's own method, you would have had to write out all of the code in freakOut three times, which is a LOT more work.
So now we have created a different story by using the escape, freakOut, and apologize methods in a different way than in the previous chapter. Also, we did this pretty easily because the methods were already created and when we wanted to perform method more than once, we just dragged it multiple times into the code area.