Live output
Editable code
Press Esc to move focus away from the code area (Tab inserts a tab character).
const list = document.querySelector('.output ul'); list.innerHTML = ''; const stations = ['MAN675847583748sjt567654;Manchester Piccadilly', 'GNF576746573fhdg4737dh4;Greenfield', 'LIV5hg65hd737456236dch46dg4;Liverpool Lime Street', 'SYB4f65hf75f736463;Stalybridge', 'HUD5767ghtyfyr4536dh45dg45dg3;Huddersfield']; for (let station of stations) { // write your code just below here const result = station; const listItem = document.createElement('li'); listItem.textContent = result; list.appendChild(listItem); }