Bennett replaces Konecny in Canada’s lineup at practice
Florida Panthers forward Sam Bennett slotted into Canada’s lineup at practice on Friday, replacing Travis Konecny.

After locking up a 4-3 overtime win over Sweden on Wednesday night, Canada appears to be making a lineup swap ahead of Saturday’s pivotal contest against the United States at the 4 Nations Face-Off.
Florida Panthers forward Sam Bennett slotted into Canada’s lineup at practice on Friday, replacing Travis Konecny.
Bennett centred a line with Brad Marchand and Seth Jarvis.
Canada also had Anthony Cirelli slide over to a wing on the other adjusted line, with Brayden Point down the middle and Brandon Hagel rounding out the all-Tampa Bay Lightning line.
-
-
4 Nations Face-Off on Sportsnet
The inaugural edition of the 4 Nations Face-Off is here with the top players from Canada, Sweden, Finland and the United States going head-to-head in the highly anticipated best-on-best event. Watch all the games on Sportsnet and Sportsnet+.
Konecny was a minus-2 with three hits in 10:20 of ice time against Sweden.
Bennett will join Canada’s bottom six to bring an extra level of physicality against the Americans, who used a third-period surge to bury Finland, 6-1, on Thursday.
The 28-year-old Panthers forward has 18 goals, 17 assists and 62 penalty minutes in 55 games with his NHL club in 2024-25.
Puck drops between the USA and Canada at 8 p.m. ET / 5 p.m. PT from Montreal on Saturday. Catch all the action on Sportsnet and 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_6eef9b870d2a0a430eae730efdff3a81', '4nationsfaceoff', '4a33dda8-be0b-4603-83ce-62305f19cc03');