I am trying to print out the words in the ArrayList, given they do not start with an "S". So, I need the first index of each item in the String ArrayList
My first attempt was the condition in the if statement to be: if(itemsArrayList.charAt(0) == "S") but that throws me an error.
This one doesn't throw me an error, but it still prints out all of the items in the ArrayList (not skipping over "Slim" and "Shady")
//won't let me post code as a text