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
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.
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 = `
`; 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_fdf7ef56fbfb8079e01dfcf3610c8948', 'NHL', 'f1b4bb2c-09e6-453b-b6b0-a66e2ac8e5f9');