@PythonDvz Answer: Indexing starts from 0.
So, x[1] refers to the 2nd item from the left, and that's the string '2'.
Similarly x[2] refers to the 3rd item from the left, and that's the string '3'.
If we add those two, we are adding strings, which joins them.
That gives 23 to print.