The reason the compiler is complaining is because you never once initialized `numberString`. I suspect you intended to initialize it with something like:

numberString = keyboard.next();
... but...