Three people – all juveniles – have been arrested in connection with the fatal shooting in September of an Iraqi refugee who was trying to prevent his car from being stolen.
Ahmed Zainuldeen had been in the United States for less than a year when he was shot and killed in the parking lot of his apartment building near South Quebec Street and East Yale Avenue in Arapahoe County on Sept. 19, 2023.
Last month, prosecutors charged two of the three suspects as adults. Raydon Collins, who turned 18 earlier this month, and Dhaevontae Broadus, 17, are each charged with first-degree murder, felony murder, aggravated robbery and other charges.
The third suspect’s case remains in juvenile court, and due to their age, their name was not released.
At the time of the crime, the sheriff’s office said they were looking for four suspects and said it was possible that they were all juveniles. Zainuldeen’s 2012 Hyundai Sonata was later found abandoned in a southeast Aurora neighborhood.
Broadus was charged in October in a separate fatal shooting in Aurora that occurred on Sept. 30, just 11 days after the deadly carjacking.
Raphael Velin, 15, was killed in the parking lot of the Southlands shopping center near 6100 Main St. Broadus turned himself in to police for that case and has been in custody since mid-October on charges of second-degree murder, felony murder and aggravated robbery.
For more on this story, and others, visit The Denver Gazette’s news partner, 9News.com.
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;
}
}