My String Array contains multiples strings:
var array = ["Test", "Another Test", "Third test"]
I wonder how I can replace all the "e" characters in the array with "*". It´s important for me to always use my array and not create a new one.
Any help would be appriciated.