I have two arrays:
arr1 = ['1', 'x', '0', 'x']
arr2 = ['2', '5']
I want to replace the 'x' in the first array, with the numbers in the second array in the exact order so I would obtain something like this:
arr3 = ['1', '2', '0', '5']
I have no idea where to start. I've tried with concat() and slice() but with no result.