1String words = "Hi There"; //creating a string var named 'words'
2char index = words.charAt(0); /* setting a variable 'index' to letter
3'0' of variable 'words'. In this case, index = 'H'.*/
4System.out.println(index); //print var 'index' which will print "H"