(function (Scratch) { 'use strict'; class MangoHistory { getInfo() { return { id: 'mangohistory', name: 'MANGO HISTORY', color1: '#FFA500', color2: '#FFCC66', blocks: [ { opcode: 'history', blockType: Scratch.BlockType.REPORTER, text: 'the history of mangoes as a whole' } ] }; } history() { return "Mangoes originated in South Asia over 4,000 years ago, where they were cultivated and admired for their sweetness and cultural importance. Over time, mangoes spread through trade and exploration to Southeast Asia, the Middle East, Africa, and eventually the Americas. Today, mangoes are one of the most widely grown and consumed fruits in the world, symbolizing both tropical agriculture and global food exchange."; } } Scratch.extensions.register(new MangoHistory()); })(Scratch);