Soon after making major changes to its menu, KFC is bringing new surprises to customers across the country as it will bring back a major fan-favorite. Returning to the chain's menu after ten years, the Kentucky Fried Chicken Double Down burger will return to stores starting March 6. The no-bun burger was first introduced in 2010 and later retired in 2014.

With a cult fan following, the high-on-chicken burger will be available all across the country for a limited time. Fans will get to enjoy the new burger at all participating restaurants across the country.

The returning Double Down burger can be ordered at your nearest KFC restaurant or through the chain's app and website for pick-up or deliveries.

While the hype for the returning no-bun sandwich isn't that bad, some fans still can't help but be skeptical about the calories. A string of comments on Reddit indicated at how the returning Double Down burger could be "a great day for cardiologists."

Comments by users @danthemanhsv and @cannonfunk on Reddit

What is KFC's Double Down Burger made of?

First introduced to the menu in 2010, the Double Down burger was the chain's attempt to offer fans a burger they could have never thought of before. Apart from being loved by fans all across the country, the no-bun burger even resulted in the creation of many iterations from the major fast food chains. In the first year of its launch, KFC sold over 10 million of these to fans across the country.

The chain's iconic no-bun sandwich is made with two extra crispy, 100% white meat chicken filets, two slices of cheese, two crispy pieces of hickory-smoked bacon, and your choice of real mayo or spicy sauce.

The returning fan-favorite offers a classic bun-less Kentucky Fried Chicken experience for those who can't help but hide their love for fried chicken. Fans can enjoy the returning burger at all particpating locations for over a month starting March 6.

Double Down Burger returns to restaurants starting March 6 (Image via KFC)

The fried chicken fast food restaurant chain announced the return of the fan-favorite in a press release, with Nick Chavez, Chief Marketing Officer, Kentucky Fried Chicken, quoting:

"The Double Down is one of the most buzzworthy fast food menu items ever."

Briefing fans about the return of the burger with a cult-like fan following, the CMO added:

"After nearly a decade of people begging for its return, we're embracing the chaos, bringing back our most iconic sandwich ever for just four weeks."

How healthy is KFC's Double Down burger

the Double Down burger is packed with over 610 calories (Imagege via Kentucky Fried Chicken)

There's no denying that fast food is never something one can enjoy every day. Apart from being high in cholesterol and fat, your regular fast food is often packed with a lot of unwanted calories. The KFC Double Down burger is no stranger to the fact and packs over 610 calories, along with 37 grams of fat and 18 grams of carbohydrate.

For those interested, here are the complete nutritional values of the original Kentucky Fried Chicken Double Down burger:

Calories610 calories
Calories From Fat330 calories
Total Fats37 grams
Saturated Fat11.0 grams
Trans Fat1.0 gram
Cholesterol150 milligrams
Sodium1880 milligrams
Total carbohydrates18 grams
Dietary Fiber1 gram

Sugar

1 gram

Protein

52 grams

Make note that these values are only based on the original KFC Double Down burger. Any additions and/or customizations, like beverages or sides, can greatly impact the overall nutritional value of the meal.

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1419600, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1419600); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1419600) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1419600) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKifpXqkwcutrKudX6OyuL%2BMmmSgqpWWwW6wwLJknJmimbawuM6goKyso2K4p6%2BMnaaumpyaeq%2FB06ugraGfo3qkrcuoqaKdo2KyubzLqKmenF2brq95xZqtqKqZqbJuvsStrKumow%3D%3D