str = 'INPUT HERE' str = str.split(''); str[3] = 'O'; str = str.join(''); //Output: INPOT HERE //Why does 3 replace the fourth character? //Almost all rogramming languages start to count from zero. //0 = first, 1 = second...