Devils’ Luke Hughes, Brenden Dillon out for Game 2 vs. Hurricanes
The New Jersey Devils will be missing two more key players for Game 2 against the Carolina Hurricanes on Tuesday.

The New Jersey Devils will be missing two more key players for Game 2 of their Eastern Conference quarterfinal against the Carolina Hurricanes on Tuesday.
Coach Sheldon Keefe told reporters that defencemen Luke Hughes and Brendon Dillon will not be available after suffering injuries in Game 1.
Hughes appeared to suffer an upper-body injury in the third period of the 4-1 loss, while Dillon suffered an apparent lower-body injury and needed to be helped off the ice in the second period.
Hughes, picked fourth overall in the 2021 NHL Draft, had seven goals and 37 assists in 71 games this season.
Dillon, 34, is one of the more experienced blueliners on the Devils. The team is already playing without top-four defenceman Jonas Siegenthaler and star centre Jack Hughes.
Watch Game 2 of the Hurricanes-Devils series at 6 p.m. ET / 3 p.m. PT on Sportsnet 360 or Sportsnet+.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_0440cf09593aa3c0e7d056c5661b0c22', 'NHL', '5aa01308-436c-46de-b13a-b28644cafa7a');