A woman and a carjacker are dead following a nearly head-on crash Thursday night in Centennial, according to the Arapahoe County Sheriff’s Office.
Deputies were dispatched around 10:15 p.m. to East Dry Creek Road and South Adams Street after multiple reports of a severe crash with possible fatalities, said John Bartmann, a public information officer for the sheriff’s office.
Authorities arrived on-scene and confirmed a woman and man died as a result of the crash.
Witnesses told investigators that the two vehicles collided nearly head on, which caused the stolen vehicle to spin and ultimately hit the second vehicle for a second time, Bartmann said.
“I’ve rarely seen a car as mangled up as that one,” Bartmann said.
The roadway was closed for over six hours as investigators interviewed witnesses, processed the scene and tried to determine what led to the crash.
Currently, investigators believe speed and reckless driving may have played a role in the crash. It is unknown if drugs may have played a factor.
Throughout the investigation, officials learned that one of the vehicles, a Hyundai Sonata, was carjacked from a Littleton gas station near Dry Creek Road and Broadway just minutes before the crash.
Prior to stealing the car, the man unsuccessfully tried to carjack another person at Big Daddy’s Pizza near Broadway and was involved in a bicycle, vehicle crash.
“We don’t know why he left the scene, but we do know he fled on foot and then proceeded to carjack the vehicle that was involved in the crash,” said Krista Dimock, a spokesperson for the Littleton Police Department.
The identity of the individuals will be released by the county coroner’s office at a later date.
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;
}
}