In one line of code, produce the string "Ruby Rocks". The challenge is to make the code as difficult as possible to read and predict that the output will be "Ruby Rocks".
%w(115 107 99 111 82 32 121 98 117 82).reverse.map{ |num| num.to_i.chr }.join
View Preview
%w(115 107 99 111 82 32 121 98 117 82).reverse.map{ |num| num.to_i.chr }.join
Feedback