@anshul ,
You can refer to a particular item of an array with:
variables('Results')[0] - first item from Results array ;
variables('Results')[1] - second item from Results array;
and so on ...
To set a value of CustomerName variable you can use either initialize variable or set variable action (depends of the scenario) and use as value the first element of the array: variables('Results')[0].
Hope it helps !