Hello,
The .toString() method will return a different
string object each time it is run, and the '==' will check to see if these "objects" are equal. They are not, so your code returns false.
If you want to check if strings are equal you need to use the .equals() method, such as;
The above code will give you a "true" condition.
Hope this helps,
Pat B.