Right now im working on a basic base scenario, and need some help with removing a letter from a given string.
So say that i have a string created like this:
private String word = "wateva";
I want to be able to press backspace and it will remove the last letter of it. Is there a way to do this?

