Consider the code segment below. You can assume that Input_List_From_User asks the user for several values and returns them as a list.
inputList ← Input_List_From_User ()
resultList ← []
FOR EACH item in inputList
{
APPEND (resultList, Mystery (item))
}
Based on the code segment, how would you best describe the value of resultList?