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