Predators’ Roman Josi to miss game vs. Jets due to upper-body injury
Injured Nashville Predators defenceman Roman Josi will be sitting out Thursday’s game against the Winnipeg Jets.

Injured Nashville Predators defenceman Roman Josi will be sitting out Thursday’s game against the Winnipeg Jets.
Predators head coach Andrew Brunette made the announcement at the team’s optional morning skate, per team reporter Brooks Bratten.
Josi, 34, is day-to-day with an upper-body injury he suffered in Tuesday’s 4-1 loss to the Florida Panthers.
After taking a hit from forward Sam Bennett midway through the second period, his head hit the glass on the play, and he fell to the ice. He stayed in for the remainder of the second but did not return to the bench for the final frame.
The Predators’ captain hasn’t produced up to his usual standards this season, tallying nine goals and 29 assists with a career-worst minus-26 over 53 games. He had 23 goals and 62 assists after suiting up for all 82 games in the 2023-24 season.
Nashville’s 20-30-7 record is good for seventh place in the Central Division.
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_2345e4548ecef51addc7ce32638b3587', 'NHL', 'ddc128dd-d32e-4ac9-bec7-0e9151b58bf9');