Connect with us

Nebraska

Nebraska’s Bergan Reilly shows out during homecoming spring volleyball match

Published

on

Nebraska’s Bergan Reilly shows out during homecoming spring volleyball match


Nebraska volleyball’s Bergan Reilly shows out during homecoming spring match

Advertisement

ALTHOUGH THE MAVS STILL TAKE TWO OF THREE FROM THE TOMMIES THIS WEEKEND. NEBRASKA SOFTBALL KICKED OFF ITS SPRING SEASON ON SATURDAY IN SIOUX FALLS, SOUTH DAKOTA, HOME OF MOUNT RUSHMORE AND NEBRASKA. GOTHENBURG AND RILEY. AND WHEN HER TIME IN LINCOLN IS DONE, SHE MAY JUST EARN A SPOT ON NEBRASKA VOLLEYBALL’S OWN MOUNT RUSHMORE. EDDIE MESSEL HAS MORE FROM THE SANFORD PENTAGON. NOW, IT IS NO SURPRISE WHO THE FAN FAVORITE WAS HERE FOR NEBRASKA VOLLEYBALL IN THEIR SPRING MATCH OUT IN SIOUX FALLS, RILEY. IT’S HER HOMETOWN. IT WAS A HOMECOMING FOR HER IN A GYM IN THE PENTAGON THAT SHE’S PLAYED MULTIPLE VOLLEYBALL MATCHES AND BASKETBALL GAMES DATING BACK TO HER TIME IN HIGH SCHOOL. THIS WAS SUCH A BIG MOMENT FOR HER AND HER FAMILY THAT HER FAMILY EVEN GOT A BOX HERE AT THE PENTAGON FOR FRIENDS AND LOVED ONES TO TAKE IN. WATCHING BACK HOME. BUT NOW, AS A HUSKER. A LOT OF FAMILIAR FACES IN THE CROWD AND JUST HAPPY THAT I COULD BRING MY TEAM HOME AND GOT TO HAVE A LITTLE TEAM DINNER LAST NIGHT WITH MY FAMILY. SO THAT WAS FUN. BUT YEAH, I THINK THE CROWD SHOWED OUT AND IT WAS REALLY FUN AND WE PLAYED REALLY WELL TOO. THAT CROWD SHOWED LOVE. RILEY’S SISTER AND OTHERS WEARING I HEART T SHIRTS THAT EVEN RILEY TOOK NOTICE OF. I DID SELLING THEM AT SCHEELS. RILEY DIDN’T DISAPPOINT THOSE IN ATTENDANCE. A TEAM HIGH 17 ASSISTS IN JUST TWO SETS, EVEN SHOWING OFF A LITTLE BIT OF HER OFFENSE TO DO IT IN YOUR HOMETOWN WHERE THERE’S A LOT OF PRIDE, I THINK IT’S PRETTY SPECIAL PRAYER. I THINK EVERYONE KNEW THAT THIS WAS A SPECIAL DAY FOR ME, BUT I ALSO KNOW AT THE END OF THE DAY THAT IT IS A GAME AND KIND OF ONCE THE GAME STARTS, ALL THAT STUFF GOES AWAY WITH MOM, TIFFANY AND DAD BRANDON IN THE STANDS. IT WAS A DAY FILLED WITH EMOTIONS FOR THE RILEY FAMILY. WELL, I’M NOT GOING TO LIE, I WAS THE FIRST TIME SHE WAS INTRODUCED AS A SENIOR SO THAT MAYBE MADE IT MADE THE EYES A LITTLE WET. THE BEGINNING OF THE END FOR RILEY, BACK WHERE IT ALL STARTED IN THE PENTAGON. I WAS JUST KIND OF LIKE A FULL CIRCLE MOMENT TO BE ABLE TO START OFF MY SENIOR YEAR BACK IN MY HOMETOWN WITH HER HUSKER UNIFORM ON AND WITH ALL THE RED IN THE CROWD. IT’S JUST IT’S IT’S JUST SUCH AN EXPERIENCE. THE HUSKER FAITHFUL BROUGHT THE SEA OF RED FROM LINCOLN, GIVING A LITTLE TASTE OF DEVANEY INSIDE THE PENTAGON. IT WAS REALLY FUN TO HAVE THAT ATMOSPHERE AND GET TO EXPERIENCE THAT, AND I’M GLAD THAT WE COULD BRING A LITTLE BIT OF A SHOW TO THE PEOPLE OF SIOUX FALLS. SO I LOVE THIS RALLY HERE IN SIOUX FALLS. WELL, THE LOUDEST AT THE PENTAGON GOT TODAY WAS AT THE END OF SET TWO WHEN RILEY SERVED UP AN ACE TO TAKE T

Advertisement

Nebraska volleyball’s Bergan Reilly shows out during homecoming spring match

Updated: 8:46 AM CDT Apr 13, 2026

Editorial Standards

Advertisement

Nebraska volleyball kicked off its spring season in Sioux Falls, South Dakota. It’s the home of Mount Rushmore and Nebraska setter Bergan Reilly. When her time in Lincoln is done, she may just earn a spot on Nebraska volleyball’s own Mount Rushmore.See the video above for the whole story.Make sure you can always see the latest news, weather, sports and more from KETV NewsWatch 7 on Google search.NAVIGATE: Home | Weather | Local News | National | Sports | Newscasts on demand |

Nebraska volleyball kicked off its spring season in Sioux Falls, South Dakota.

Advertisement

It’s the home of Mount Rushmore and Nebraska setter Bergan Reilly.

When her time in Lincoln is done, she may just earn a spot on Nebraska volleyball’s own Mount Rushmore.

See the video above for the whole story.

Advertisement

Make sure you can always see the latest news, weather, sports and more from KETV NewsWatch 7 on Google search.

NAVIGATE: Home | Weather | Local News | National | Sports | Newscasts on demand |

Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

Advertisement

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

Advertisement

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

Advertisement

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.ketv.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.ketv.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

Advertisement

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

Advertisement

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

Advertisement

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

Advertisement

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

Advertisement

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.ketv.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.ketv.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

Advertisement

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

Advertisement

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Loading more articles…

Advertisement



Source link

Nebraska

Nebraska Lottery results: See winning numbers for Pick 3, Pick 5 on April 19, 2026

Published

on


The results are in for the Nebraska Lottery’s draw games on Sunday, April 19, 2026.

Here’s a look at winning numbers for each game on April 19.

Winning Pick 3 numbers from April 19 drawing

4-3-3

Check Pick 3 payouts and previous drawings here.

Advertisement

Winning Pick 5 numbers from April 19 drawing

14-19-24-30-34

Check Pick 5 payouts and previous drawings here.

Winning 2 By 2 numbers from April 19 drawing

Red Balls: 01-02, White Balls: 09-26

Check 2 By 2 payouts and previous drawings here.

Winning MyDay numbers from April 19 drawing

Month: 08, Day: 16, Year: 61

Advertisement

Check MyDay payouts and previous drawings here.

Winning Millionaire for Life numbers from April 19 drawing

32-42-52-53-55, Bonus: 05

Check Millionaire for Life payouts and previous drawings here.

Feeling lucky? Explore the latest lottery news & results

When are the Nebraska Lottery drawings held?

  • Powerball: 9:59 p.m. CT Monday, Wednesday and Saturday.
  • Mega Millions: 10 p.m. CT on Tuesday and Friday.
  • Pick 3, 5: By 10 p.m. CT daily.
  • Lucky For Life: 9:38 p.m. CT daily.
  • 2 By 2: By 10 p.m. CT daily.
  • MyDaY: By 10 p.m. CT daily.
  • Lotto America: 9:15 p.m CT Monday, Wednesday and Saturday.
  • Millionaire for Life: 10:15 p.m. CT daily.

This results page was generated automatically using information from TinBu and a template written and reviewed by a USA Today editor. You can send feedback using this form.



Source link

Advertisement
Continue Reading

Nebraska

Scouting Future Saints: Nebraska Cornhuskers RB Emmett Johnson

Published

on

Scouting Future Saints: Nebraska Cornhuskers RB Emmett Johnson


The New Orleans Saints made a big splash in free agency when they signed Travis Etienne Jr. to pair with Alvin Kamara in the backfield. Etienne’s addition probably means that the Saints won’t select a back with an early choice in the 2026 NFL Draft. However, don’t be surprised if the team adds another back with a later pick. If that’s the case, Emmett Johnson of the Nebraska Cornhuskers could be someone on their radar.

Etienne will likely be the featured back, but Kamara’s future beyond 2026 is in some doubt. Kamara turns 31 in July and is entering his 10th season with a big contract after already showing some possible decline. Behind them, Kendre Miller has proven he shouldn’t be relied on and 2025 sixth round choice Devin Neal has flashed potential but remains unproven. The Saints may be wise to add more talent to their backfield with a middle or later round pick.

Emmett Johnson bio

  • Position: Running back
  • College: Nebraska Cornhuskers
  • Height: 5-feet, 10 inches
  • Weight: 202 pounds
  • 40-yard dash: 4.56 seconds
  • 10-yard split: 1.59 seconds
  • 3-cone drill: 7.32 seconds
  • 20-yard shuttle: 4.29 seconds
  • Vertical jump: 35.5″
  • Broad jump: 10′

Recipient of the 2021 Minnesota Mr. Football award at Academy of Holy Angels High School, Johnson began with the Nebraska Cornhuskers as a three-star recruit. He’d take a redshirt in 2022 then rushed for 411 yards with 2 scores in 2023 as part of a backfield committee. In 2024, Johnson picked up 598 yards on the ground and caught 39 passes for 286 yards with 3 total scores.

By 2025, Johnson was the Cornhuskers featured weapon and exploded onto the national radar. Johnson’s 1,451 rushing yards and 251 carries both led the Big Ten and were among the NCAA leaders. He also caught a team-high 46 passes and scored 15 touchdowns, as his 1,821 yards from scrimmage were second across the NCAA. Those eye-popping numbers earned him 1st Team All-American honors as well as the 2025 Big Ten Running Back of the Year.

Advertisement

Strengths

  • Hits rushing lanes with authority
  • Makes sharp cuts at top speed
  • Decisive north-south runner
  • Good acceleration into the second level
  • Legitimate receiving threat

Weaknesses

  • Doesn’t have breakaway speed
  • Has trouble creating yards when the hole isn’t there
  • Must maintain balance better through contact
  • Doesn’t break many tackles
  • Only one year of high-level production

Emmett Johnson 2026 draft outlook

Johnson’s 2025 tape and production are worthy of a high pick, but teams looking for a featured back might be wary of his lack of power. Still, Johnson has a strong chance of being picked somewhere on the second day and shouldn’t last later than the fourth round. His decisive one-cut and go style and receiving ability gives him a strong chance to be an instant contributor with an incredibly high upside of a potential starter.

New Orleans has had success with late-round picks and undrafted players at running back. Emmett Johnson won’t last that long. But, if Johnson slips into Day 3, the Saints could be tempted to add him and bolster their backfield in multiple ways.



Source link

Continue Reading

Nebraska

Gallery: Huskers Run-Rule No. 12 USC to Take Series

Published

on

Gallery: Huskers Run-Rule No. 12 USC to Take Series


Carson Jasa pitched a strong game, earning his second complete-game of the season. Nebraska’s offense started fast and kept rolling, leading to a 12-2 run-rule win over No. 12 USC in seven innings on Saturday at Hawks Field. This marked head coach Will Bolt’s 200th career win at Nebraska. 

Advertisement

A season-high crowd of 7,602 fans filled the ballpark, making for one of the most exciting games of the year. This attendance is the 25th largest in Hawks Field history and the second biggest since Nebraska joined the Big Ten, just behind the 7,650 fans at a 2021 doubleheader against Michigan. The fans saw Nebraska play a complete game, improving to 30-9 overall and 14-3 in the conference. USC fell to 30-10 and 13-7 in Big Ten play.

Advertisement

Nebraska’s offense scored 12 runs on 12 hits and made only one error. USC scored just two runs on five hits and had two defensive mistakes. Drew Grego led the way, going 3-for-4 and missing the cycle by only a triple. He hit a home run, a double, and drove in four runs. Dylan Carey also went 3-for-4 with a home run and scored three times. Case Sanderson went 2-for-4 with a home run and three RBIs, and Jett Buck added a double and scored three runs. Mac Moyer, Joshua Overbeek, and Trey Fikes each had a hit. 

Jasa took control on the mound right from the start. He pitched all seven innings, giving up just two runs, only one earned, on five hits. He struck out seven and walked only two, moving his record to 7-1 this season. 

The Huskers started strong, taking an early lead in the first inning. Nebraska sent eight batters to the plate and scored four runs right away. Sanderson brought in the first run with a groundout that scored Moyer. Buck hit a double to bring home Carey, Grego added an RBI double to score Buck, and Overbeek finished the inning with a single that made it 4-0.

Nebraska added to its lead in the third inning with three solo home runs.. Sanderson and Carey hit back-to-back homers, and Grego followed by sending the first pitch he saw over the left field wall. That made it 7-0 and put the game out of reach.

Advertisement

The Huskers continued to add on in the fifth inning, capitalizing on aggressive baserunning. Carey and Buck each stole. The Huskers kept building their lead in the fifth inning by taking advantage of aggressive baserunning. Carey and Buck both stole bases to get into scoring position, and Grego singled to left field to drive them both in, making it 9-0.

Advertisement

USC rallied briefly in the top of the seventh, scoring two runs on three hits and a Nebraska error. A solo home run gave the Trojans their first run, and a mix of hits and a defensive mistake brought in another, making it 10-2. Stokes drew walks to put runners on base, and Trey Fikes delivered an RBI single to left field. A USC fielding error on the play allowed both Buck and Stokes to score, ending the game at 12-2 and clinching the series for the Huskers. 

Carson Jasa gave up just one earned run in his seven-inning complete game. | Amarillo Mullen
Advertisement

Case Sanderson (14) gives Jett Buck (1) a fist bump after scoring. | Amarillo Mullen

Advertisement

Dylan Carey points to the dugout after a single to score Sanderson. | Amarillo Mullen

Advertisement

Jett Buck (1) makes contact for an RBI double. | Amarillo Mullen

Advertisement

Dylan Carey (15) high fives Joshua Overbeek (4) after scoring on Buck’s double. | Amarillo Mullen

Jett Buck touches home plate to score on a double from Drew Grego. | Amarillo Mullen
Advertisement

Drew Grego celebrates his RBI double. | Amarillo Mullen

Advertisement

Drew Grego (10) pumps his fist after crossing home plate to score. | Amarillo Mullen

Advertisement

Case Sanderson rounds the bases after a solo homerun to lead of the bottom of the third. | Amarillo Mullen

Advertisement

Dylan Carey (15) celebrates his solo homerun with the Husker dugout. | Amarillo Mullen

Drew Grego comes home after his solo homer. | Amarillo Mullen
Advertisement

Carson Jasa celebrates a quick inning on the mound. | Amarillo Mullen

Advertisement

Dylan Carey and Jett Buck (1) smile after scoring. | Amarillo Mullen

Advertisement

Case Sanderson celebrates a double. | Amarillo Mullen

Advertisement

Rhett Stokes steps on home plate to score the tenth run for the Huskers to end the game in seven. | Amarillo Mullen

Trey Fikes smiles after his single with a USC error to score the final two runs of the game. | Amarillo Mullen
Advertisement

The Huskers run out to center field with Trey Fikes (21) to celebrate their run-rule walk-off. | Amarillo Mullen

Advertisement

The Huskers have won the series and will go for the weekend sweep on Sunday. | Amarillo Mullen


Stay up to date on all things Huskers by bookmarking Nebraska Cornhuskers On SI, subscribing to HuskerMax on YouTube and visiting HuskerMax.com daily.

Add us as a preferred source on Google



Source link

Advertisement
Continue Reading
Advertisement

Trending