Hurricanes’ Frederik Andersen to start Game 1 against Devils

Frederik Andersen will be between the pipes when the Carolina Hurricanes host the New Jersey Devils for Game 1 of their Stanley Cup Playoffs opening series.

Apr 20, 2025 - 20:11
 0
Hurricanes’ Frederik Andersen to start Game 1 against Devils

Carolina Hurricanes head coach Rod Brind’Amour has opted for veteran netminder Frederik Andersen over regular-season starter Pyotr Kochetkov to begin the Stanley Cup Playoffs.

Brind’Amour told reporters Andersen will start Saturday when the Hurricanes host the New Jersey Devils for Game 1.

Andersen posted a 13-8-1 record, 2.50 goals-against average and .899 save percentage in 22 games during the regular season.

The 35-year-old has played in 72 career playoff games over nine seasons with the Anaheim Ducks, Toronto Maple Leafs and Hurricanes.

He holds a 38-30 record with a 2.46 GAA and .914 save percentage plus three shutouts.

  • Watch the Stanley Cup Playoffs on Sportsnet
  • Watch the Stanley Cup Playoffs on Sportsnet

    The NHL’s best are ready to battle for the right to hoist the Stanley Cup. Watch every game of the Stanley Cup Playoffs on Sportsnet and Sportsnet+ beginning on April 19.

    Broadcast Schedule

Kochetkov, 25, made 47 appearances in the regular season and registered a 27-16-3 record, 2.60 GAA and .897 save percentage.

He has appeared in only six playoff games over the previous three seasons in Carolina, with a 1-4 record, 4.01 GAA and .863 save percentage.

Watch Game 1 live on Sportsnet and Sportsnet+ starting at 3 p.m. ET / noon PT.

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 = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_fdf7ef56fbfb8079e01dfcf3610c8948', 'NHL', 'f1b4bb2c-09e6-453b-b6b0-a66e2ac8e5f9');