Arrays of objects are everywhere. Given an array of users with shape { id: number; name: string }, create a new array containing only the name of each user.
You’ll practice typing arrays of objects and using map to transform the data without mutation.