Given string userText on one line and character fourthChar on a second line, change the fourth character of userText to fourthChar.

Ex: If the input is:

cheetah
v

then the output is:

chevtah

Note: Assume the length of string userText is greater than or equal to 4.

Given string userText on one line and character fourthChar on a second line change the fourth character of userText to fourthChar Ex If the input is cheetah v t class=