So we can convert numbers to strings, but what about converting strings to numbers?

Well, Ruby does that too! But there's a catch. Can you figure it out?

Boom! The to_i method converts strings to integers. However, when it doesn't recognize any numbers in the string, it'll produce a 0.

Uh .. that's not really what we were going for, is it?