Exchange three value with using new variables
a, b, c = :red, :green, :blue c, a, b = a, b, c puts a # => :green puts b # => :blue puts c # => :red