I want to split an array into three variables; the first value into one variable, the second one into another variable, and all the rest into one string, for example:
arr = ["a1","b2","c3","d4","e5","f6"]
var1 = arr[0] # var1 => "a1"
var2 = arr[1] # var2 => "b2"
var3 = ? # var3 should be => "c3d4e5f6"
What code is needed to achieve the listed values for each variable?