String#chars
#Ruby
String#chars (Ruby 3.3 リファレンスマニュアル)
文字列を一文字ずつに分割して配列にして返してくれる
code:ruby
"wanpa".chars
# => "w", "a", "n", "p", "a"