These lines are duplicated 5 times in the `Request` class. ```swift if let apiKey = config.apiKey { let bearer = "Bearer \(apiKey)" request.addValue(bearer, forHTTPHeaderField: "Authorization") } ``` We could find a way to remove this duplication :)