ハッシュマップを使用して単語のリストを使用して簡単なゲームを作成しようとしています。私がやりたいことは。ユーザーにリストから単語をスクランブルで表示したい。たとえば、hello のような単語は「loeh」になります。ユーザーは自分の答えを入力する必要があり、答えが正しければユーザーはポイントを獲得します。マップリストのキーをスクランブルしてユーザーに表示する方法を誰か教えてください。
これは私がこれまでに持っているコードです。
public class Game extends Applet {
/*
* (non-Javadoc)
*
* @see java.applet.Applet#init()
*/
// create a list words with answers. probbaly a map list
Map<String, String> words = new HashMap<String, String>();
// add words and definition to the list
words.put("HI", " A form Salutation");