PHP Taskbook Level 2.9
Given a number:
123456
Find the sum of the pairs of digits of this number. In our case, we mean the following:
12 + 34 + 56
Given an array of numbers:
[1, 2, 3, 4, 5]
Print the elements of this array to the console in reverse order.