# Lösung: Monkey Patch
```ruby
class String
def to_leet
self.tr('aeiou', '43107')
end
print "hello leet".to_leet # => h3ll0 l337
```