Write a simple cipher that will take a string and replace each letter in the range a-z with the corresponding character 13 steps along the alphabet.
Sigiloso
def cipher(string) string.chars.each_with_index do |char, index| string[index] = (char.ord + 13).chr end end