We've talked about return, but I think we should do it again!

The return keyword, well, returns a value. This means that we can assign the result of a method to a variable. Wild!

Woohoo! The triple method takes an integer, multiplies it by 3 and returns the result. We call it, store its return value in my_number and display it.

Didn't we want to get a value from triple to assign to my_number?