Write a function process_scores(scores) that receives a list of integer game scores. It should return a new list containing only the non‑negative scores, sorted in ascending order. Do not modify the original list.
Examples:
process_scores([10, -5, 3, -2, 7]) # returns [3, 7, 10]
process_scores([]) # returns []