4 lines
120 B
AutoHotkey
4 lines
120 B
AutoHotkey
|
|
list := ["abc", "def", "gh", "ijklmnop", "hello", "world"]
|
||
|
|
Random, randint, 1, % list.MaxIndex()
|
||
|
|
MsgBox % List[randint]
|