X

6'x16' Polar King Mobile Refrigerated/Freezer

2025 Polar King 6x16 Refrigerated/Freezer Trailer 

6x16 REFRIGERATED TRAILER

For those with substantial refrigeration requirements, the Polar King Mobile 6x16 (PKM616) is the ultimate solution. This 6' x 16' refrigerated trailer boasts a gross vehicle weight rating (GVWR) of 9,990 lbs. and an impressive capacity of 6,690 lbs., making it ideal for larger operations that need to transport significant amounts of perishable goods efficiently.

  • Temperature Range: 0°F to 50°F

  • Dimensions: 6' x 16'

  • GVWR: 9,900 lbs.

  • Trailer Weight: 3,300 lbs.

  • Capacity: 6,690 lbs.

  • Interior Volume: 564 cu. ft.

  • Elec. Supply: 110v 15 amp Single Phase

6'x16' Polar King Mobile Refrigerated/Freezer
Price: $47,400 On Sale! $44,999
White - Refrigerated/Freezer
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 190642
VIN: 1P9RD1620SF190642
Condition: New
Year: 2025
Manufacturer: Polar King Mobile
Model: PKM616
Length: 16'
Width: 6'
Height:
GVWR (lbs): 9,990
Weight (lbs): 3,300
Payload (lbs): 6,690
Features:

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });