a/20878123/1636522
by wared
JavaScript
var string = "\
NL:What are the capitals of the states that border the most populated states?\
NL:What are the capitals of states bordering New York?\
NL:Show the state capitals and populations.\
NL:Show the average of state populations.\
NL:Show all platforms of Salute generated from NAIs with no go mobility.";
var array = string.split(/\n*NL:/);
array.shift();
document.body.innerHTML = '<ul><li>' + array.join('</li><li>') + '</li></ul>';