Oilers’ Ekholm, Hyman to return to lineup vs. Utah
Both Mattias Ekholm and Zach Hyman will return from absences as the Oilers take on the Utah Hockey Club.

The Edmonton Oilers will get a boost to their lineup Tuesday night.
Both Mattias Ekholm and Zach Hyman will return from absences as the Oilers take on the Utah Hockey Club, the team announced.
Ekholm, 34, has been out since March 4 with an undisclosed injury, missing six games.
The defenceman has 27 points (eight goals, 19 assists) in 60 games this season.
Hyman, 32, missed Sunday’s game against the New York Rangers, also with an undisclosed injury.
The winger has 37 points (22 goals, 15 assists) in 61 games.
Catch the Oilers opening their four-game homestand against Utah on Sportsnet One and Sportsnet+ starting at 7 p.m. MT / 9 p.m. ET.
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_6033496fc429b50b9dd3aa4bae06d446', 'NHL', '769e6146-585c-4d8a-b220-bd7c06be979b');