The Aurora Police Department arrested two 19-year-old men in connection to a homicide that occurred Tuesday evening.
Isaac Delacruz, 19, of Parker, was arrested late Thursday night by Aurora police on suspicion of first-degree murder and aggravated robbery, according to a news release from the department.
Kevin Hernandez-Gonzalez, 19, of Franktown, was arrested Tuesday on suspicion of second-degree murder and aggravated robbery.
The arrests stemmed from the shooting that occurred around 10 p.m. Tuesday in the 10800 block of East Bethany Drive — near Cherry Creek Reservoir.
Officers were called to the area on a report of a shooting. Upon arrival, officers found 23-year-old Yousef Jamal Elnaffar suffering from a gunshot wound. He was taken to a nearby hospital, where he later died Wednesday morning, according to a subsequent news release from the department.
Hernandez-Gonzalez was arrested shortly after the shooting.
“Our thoughts are with the victim’s family, friends and members of our community who have been impacted by this tragic and senseless crime,” Mark Hildebrand, chief of the Aurora Police Department’s Investigations Division, said in the press release. “The swift arrests of the suspects should serve as an example that the men and women of the Aurora Police Department will not rest until those who victimize our community are captured and held accountable for their actions.”
Both Delacruz and Hernandez-Gonzalez are due in court on March 19 for a filing of charges hearing.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
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=69&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/dg%20weekly%207.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/dg%20weekly%207.png);
background-size: cover;
}
}