I have some problems with replacing characters using .replace
Example:
string word = "Hello";
oldValue = "H";
newValue = "A";
word = word.replace(oldValue,newValue)
well the code above is working good, the H will be replaced with A and output will be Aello
now i want to use more newValue not just one so the H can be replaced with a random newValue not just only "A"
when i change newValue in:
newValue = 'A', 'B', 'C';
the .Replace function is giving me a error