Write JavaScript code to parse and transform an API response.
Write a JavaScript function called `parseUsers` that takes an API response object with a `data` array of user objects (each with `id`, `first_name`, `last_name`, `email`, `status`) and returns an array of only active users, with `full_name` combining first and last name.
function parseUsers(apiResponse) {
// Your code here
}Get personalized hints based on your current progress. Start with gentle hints and progress to more detailed ones.