Your child will enjoy playing with the Wilson GST Composite K2 Peewee Football, which is made with a composite leather cover for feel and durability and features ACL laces for great control. Wilson "TD" patterns give it a professional look. Recommended for 6 - 9 year olds.
Features and Benefits
Composite leather cover for feel and durability
ACL laces for great control
Wilson "TD" family patterns
Recommended for 6 - 9 year olds
Approved for play in all major youth leagues
Specifications
Product Type: Footballs
Activity: Football
Manufacturer warranty - general: 1 year
What's in the Box
Wilson GST Composite K2 Peewee Football
Shipping Restriction: Currently we are not able to ship this product to the following state(s).
NY, MN
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();