Within a function, I have the following statement:
Math.random() > 0.5 ? 'spikes' : 'slime'
I am interested in adding one more variable, let's call it 'stone', and having the program randomly choose between those three options. How can I modify the statement to achieve this without utilizing arrays? Any guidance on this matter would be greatly appreciated as I am a novice and finding difficulty comprehending this open source code.