Hello, str = "hello world" str[0] # -> 104 What does 'str[0]' do? Why does it print 104 instead of "h"? I realize that these work: str[0..0] # -> "h" str[0,1] # -> "h" Could someone explain to me what these do? And why I get: str[0,0] # -> "" Thanks a lot, Daniel.