Next we are going to create the second method: the freakOut method. This is very similar to how we made the escape method.
Step 1: Have world selected in the upper-left box.
Step 2: Click create new method in the lower-left box.
Step 3: Name the method freakOut and click OK.
You should now see a new method tab named world.freakOut that has Do nothing written inside of it located right next to the world.escape method. It should look something like this:
Now we need to put all of the freakOut code from world.my first method into world.freakOut. This time, we do not need to place the code into a Do in order tile because the code is already contained in a single Do together tile.
Step 4: Click on world.my first method.
Step 5: Drag the Do together tile that contains the freakOut code onto the clipboard.
Step 6: Click on the world.escape method tab.
Step 7: Click on the clipboard and drag to where it says Do nothing to paste the copied code into the freakOut method.
Your world.freakOut method should now look like this:
You have now completed the freakOut method!
[Q2.4.1]: Before moving onto the next section, use the same techniques as you used for the escape and freakOut methods to create the final apologize method. Don't worry if you're not quite sure - have a go anyway - basically, you need to create the method and then copy the code across from World.My First Method. Were you able to do it on your own?
When you've had a go at this task, continue on to the next page to compare your new method with the one we made...