4 lines
120 B
AutoHotkey
4 lines
120 B
AutoHotkey
list := "abc,def,gh,ijklmnop,hello,world"
|
|
StringSplit list, list, `,
|
|
Random, randint, 1, %list0%
|
|
MsgBox % List%randint%
|