Remix - Advanced Patterns
Given this loader code in a multi-tenant Remix app, what will be the output if the request hostname is 'tenant42.example.com'?
```js
export async function loader({ request }) {
const url = new URL(request.url);
const tenant = url.hostname.split('.')[0];
return new Response(`Tenant: ${tenant}`);
}
```
