(Coding in a .js file, not in the body of a .html)
So, if have a list: category = ['a', 'b', 'c'];
and every list item have themselft diffrent choices:
category[0] = ['long textstring1', 'longtextstring2', 'longtextstring3'];
category[1] = ['long textstring1', 'longtextstring2', 'longtextstring3'];
category[2] = ['long textstring1', 'longtextstring2', 'longtextstring3'];
First: How do i write a list in a list in my .js file? (Guessing you are not able to do like you would in a body with <ul> and <li> and so on)
Second: How do i randomly generate, a,b or c, and then a random list item within that list?
When i have my generated choice, i would very much like to print it out on the screen.
/W
