'hello David!'.downcase #=> hello david!
'hello David!'.upcase #=> HELLO DAVID!
'hello David!'.capitalize #=> Hello david!
'hello David!'.titleize #=> Hello David!
'TESTING'.swapcase #=> testing
'testing'.swapcase #=> TESTING
name = "mooventhan"
name.upcase