This goes wrong. Which it should not. ``` class String def blank?(str string) char *s = string int i = 0 while i < string.size do return false if s[i] != ' ' i += 1 end return true end end ```