Today's Digital Newspaper

The Gazette

Weather Block Here



Denver Broncos rookie roundup: cornerback Michael Ojemudia making most of opportunity

Following the Broncos’ Week 9 loss to the Atlanta Falcons, rookie cornerback Michael Ojemudia met with coach Vic Fangio to discuss his future.

“Whether I was either playing or not, I was always learning every week,” Ojemudia said of the first half of his rookie season. “I went to Vic’s office and he just talked to me and said, ‘Your opportunity is going to come faster than you think, so just be ready.’ Every week I’m just trying to learn and get better at at least one thing.”

Ojemudia had been playing often for the Broncos up until that point, but after the loss in which he had started, Fangio decided to go in a different direction at corner. Bryce Callahan and A.J. Bouye would start at corner and undrafted rookie Essang Bassey would start at nickel. Ojemudia spent the next two weeks on the sidelines.

Then after playing minimal snaps in Week 12, Ojemudia was back in the starting lineup against the Chiefs in Week 14 and Sunday against the Panthers, after Callahan and Bassey were put on the IR and Bouye was suspended six games. 

And Ojemudia has taken full advantage since, playing every defensive snap in the last two games and combining for 11 tackles and one pass deflection. Since that discussion with Fangio, Ojemudia has put his head down and worked. 

“Yeah, it was a tough conversation because obviously as a competitor you never want to sit and watch,” Ojemudia said. “During the week my mindset never really changed. I always just kept working — during special teams do the best and just try to make a play any way you can and try to be a spark plug. My mindset never changed, I always just kept working. It definitely sucked, but it’s just part of the growth process.”

Here’s how Ojemudia and the other Broncos rookies are performing heading into Week 15. 

2020 Broncos rookies

Jerry Jeudy, wide receiver

School: Alabama

Pick: Round 1, No. 15

Analysis: Among rookies, Jeudy ranks eighth in receptions (40), sixth in yards (636) and is tied for ninth in touchdowns (2). After catching only one pass for 5 yards against Kansas City, Jeudy caught two for 42 yards against the Panthers.

K.J. Hamler, wide receiver

School: Penn State

Pick: Round 2, No. 46

Analysis: Hamler’s role in the offense increased even more this week, catching two passes for 86 yards and two touchdowns, getting behind the Panthers’ defense for 37- and 49-yard touchdowns. He’s caught 29 passes for 377 yards and three touchdowns this year. 

Michael Ojemudia, cornerback

School: Iowa

Pick: Round 3, No. 77

Analysis: Against the Chiefs and Panthers, Ojemudia played every defensive snap in Callahan’s and Bouye’s absence. Among rookie corners, Ojemudia has played the fourth-most coverage snaps (408) and has the ninth-highest coverage grade (51.3), allowing completions 65.6 percent of the time, according to Pro Football Focus. 

Lloyd Cushenberry III, center

School: LSU

Pick: Round 3, No. 83

Analysis: Cushenberry has played every offensive snap for the Broncos this season, but is second to last among rookie offensive linemen in blocking, according to Pro Football Focus. He’s allowed 26 quarterback pressures, 19 hurries, four sacks and three hits. 

McTelvin Agim, defensive end

School: Arkansas 

Sign Up For Free: AM Update Newsletter

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();

Success! Thank you for subscribing to our newsletter.

function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);

nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}

function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}

function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;

result.innerText = “”;

if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}

function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=59&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});

}

#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;

background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/pp5%20signup%203.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}

#successnsltr a {
color: white;
}

.hideblock {
display:none;
}

h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}

@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/pp5%20signup%203.png);
background-size: cover;
}
}

Pick: Round 3, No. 95

Analysis: After Agim did not play against the Chiefs, he played 22 percent of the defensive snaps against the Panthers, coming up with one solo tackle. He has seven tackles and one pass deflection this season. 

Albert Okwuegbunam, tight end

School: Missouri

Pick: Round 4, No. 118

Analysis: Before tearing his ACL against Atlanta, Okwuegbunam had 11 receptions for 121 yards and one touchdown. Among rookie tight ends, he’s still fourth in receptions and third in yards and touchdowns. 

Justin Strnad, linebacker

School: Wake Forest

Pick: Round 5, No. 178

Analysis: Placed on IR with season-ending wrist surgery.

Netane Muti, guard

School: Fresno State

Pick: Round 6, No. 181

Analysis: Before Sunday, Muti had not played a snap for the Broncos, but made his first start at right guard in place of the injured Graham Glasgow. He finished with a grade of 60.8, allowing one sack and three quarterback pressures, according to Pro Football Focus. 

Tyrie Cleveland, wide receiver 

School: Florida

Pick: Round 7, No. 252

Analysis: Cleveland did not play Sunday against the Panthers due to illness. 

Derrek Tuszka, linebacker

School: North Dakota State

Pick: Round 7, No. 254

Analysis: Tuszka was placed on the IR following the Kansas City game in Week 8, but was activated last week and returned to practice.

Essang Bassey, cornerback

School: Wake Forest

Pick: Undrafted

Analysis: After recording his first career interception against the Saints, Bassey suffered a season-ending knee injury against the Chiefs. He finished the season with 21 solo tackles, two pass deflections and one interception. 

7708b40b-c38a-5a3d-bc27-3c8e587a1430

View Original Article | Split View

PREV

PREVIOUS

Led by veteran Nick Vannett, Broncos tight ends becoming one of Denver's most reliable units

Facebook Twitter WhatsApp SMS Email Print Copy article link Save When the Broncos started the 2020 season, tight end wasn’t a position many were worried about.  With Noah Fant, Albert Okwuegbunam, Nick Vannett, Troy Fumagalli and Jake Butt, the tight end room was considered maybe the deepest on the team. But that disappeared quickly Sunday, […]

NEXT

NEXT UP

Justin Simmons wins Darrent Williams Good Guy Award, says 'it would mean everything' to stay with Broncos long term

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Justin Simmons never met Darrent Williams, but the Broncos safety wants to follow in his footsteps.  Simmons, in his fifth season with the Broncos after being taken by Denver in the third round of the 2016 draft, is well on his way after being named […]