Basically working on a translating program, I have created a hashmap called SpanishToEnglish which holds english translations for spanish, now the problem is I have it working but if a user wants to type in a english translation it won't work because ``` String result3 = spanishToEnglish.get(input);
String result = englishToGerman.get(result3);
String result2 = englishToFrench.get(result3);
it will only work if input is a spanish word and the other 2 need result3, is there anyway to do this so I can get a user to translate from english to other languages and from spanish to all other languages