Generate a list in HTML.
Implement generate_html_list(items) to convert a list of strings into one HTML unordered list. Return <ul></ul> for an empty input, and HTML-escape each item before placing it inside an <li> element.
Input: a list of strings. Output: one HTML string containing the generated unordered list.
def generate_html_list(items):