CINXE.COM
Home - CBBC Newsround
<!DOCTYPE html><html lang="en" class="b-pw-1280 b-reith-sans-font no-touch no-js"><head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.bbc.co.uk/newsround","20200507070616","https://web.archive.org/","web","/_static/", "1588835176"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <script> window.orb_fig_blocking = false window.bbcredirection = { geo: false, device: false }; </script> <!-- Environment: live --> <!-- Orbit: 3.0.0-885.cb8f6d9c --> <!-- Analytics Web Module: 0.0.2-456.e308d0a --> <!-- NavID Web Module: 0.2.0-125.cd9b944 --> <!-- User Activity Helper Web Module: 1.0.0-54.e93a5e4 --> <!-- Cookie Banner Web Module: 0.0.2-456.e308d0a --> <!-- Searchbox Web Module: 3.0.0-95.28b47ed --> <!-- Promo Web Module: 3.0.0-121.74f66fe --> <meta name="viewport" content="width=device-width, initial-scale=1.0"><meta property="fb:admins" content="100004154058350"><link rel="stylesheet" href="https://web.archive.org/web/20200507070616cs_/https://nav.files.bbci.co.uk/orbit/1b2e292884201dd13064a9204e177864/css/orb-ltr.min.css"><!--[if (lt IE 9) & (!IEMobile)]> <link rel="stylesheet" href="https://nav.files.bbci.co.uk/orbit/1b2e292884201dd13064a9204e177864/css/orb-ie-ltr.min.css"> <![endif]--><script type="text/javascript">/*<![CDATA[*/ window.orb = { lang: 'en', bbcBaseUrl: 'https://web.archive.org/web/20200507070616/https://www.bbc.co.uk', bbcUrlPrefix: 'https://web.archive.org/web/20200507070616/https://www.', staticHost: 'https://web.archive.org/web/20200507070616/https://nav.files.bbci.co.uk/orbit/1b2e292884201dd13064a9204e177864', figUrl: 'https://web.archive.org/web/20200507070616/https://fig.bbc.co.uk/frameworks/fig/2/fig.js', partialCookieOvenUrl: 'https://web.archive.org/web/20200507070616/https://cookie-oven.api.bbc' }; document.documentElement.className += (document.documentElement.className? ' ' : '') + 'orb-js'; window.orb.worldwideNavlinks = ''; /*]]>*/</script><script>// Promise polyfill from https://github.com/bramstein/promis (function(){'use strict';var f,g=[];function l(a){g.push(a);1==g.length&&f()}function m(){for(;g.length;)g[0](),g.shift()}f=function(){setTimeout(m)};function n(a){this.a=p;this.b=void 0;this.f=[];var b=this;try{a(function(a){q(b,a)},function(a){r(b,a)})}catch(c){r(b,c)}}var p=2;function t(a){return new n(function(b,c){c(a)})}function u(a){return new n(function(b){b(a)})}function q(a,b){if(a.a==p){if(b==a)throw new TypeError;var c=!1;try{var d=b&&b.then;if(null!=b&&"object"==typeof b&&"function"==typeof d){d.call(b,function(b){c||q(a,b);c=!0},function(b){c||r(a,b);c=!0});return}}catch(e){c||r(a,e);return}a.a=0;a.b=b;v(a)}} function r(a,b){if(a.a==p){if(b==a)throw new TypeError;a.a=1;a.b=b;v(a)}}function v(a){l(function(){if(a.a!=p)for(;a.f.length;){var b=a.f.shift(),c=b[0],d=b[1],e=b[2],b=b[3];try{0==a.a?"function"==typeof c?e(c.call(void 0,a.b)):e(a.b):1==a.a&&("function"==typeof d?e(d.call(void 0,a.b)):b(a.b))}catch(h){b(h)}}})}n.prototype.g=function(a){return this.c(void 0,a)};n.prototype.c=function(a,b){var c=this;return new n(function(d,e){c.f.push([a,b,d,e]);v(c)})}; function w(a){return new n(function(b,c){function d(c){return function(d){h[c]=d;e+=1;e==a.length&&b(h)}}var e=0,h=[];0==a.length&&b(h);for(var k=0;k<a.length;k+=1)u(a[k]).c(d(k),c)})}function x(a){return new n(function(b,c){for(var d=0;d<a.length;d+=1)u(a[d]).c(b,c)})};window.Promise||(window.Promise=n,window.Promise.resolve=u,window.Promise.reject=t,window.Promise.race=x,window.Promise.all=w,window.Promise.prototype.then=n.prototype.c,window.Promise.prototype["catch"]=n.prototype.g);}()); // Polyfill Event constructor for IE ref: https://jira.dev.bbc.co.uk/browse/ORBITEN-919 // see: https://stackoverflow.com/questions/26596123 (function () { if (typeof window.CustomEvent === "function") { return false; } function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.Event = CustomEvent; })(); //Element.prototype.matches polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; } //NodeList.forEach Polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = Array.prototype.forEach; } // Object.assign polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill if (typeof Object.assign != 'function') { // Must be writable: true, enumerable: false, configurable: true Object.defineProperty(Object, "assign", { value: function assign(target, varArgs) { // .length of function is 2 'use strict'; if (target == null) { // TypeError if undefined or null throw new TypeError('Cannot convert undefined or null to object'); } var to = Object(target); for (var index = 1; index < arguments.length; index++) { var nextSource = arguments[index]; if (nextSource != null) { // Skip over if undefined or null for (var nextKey in nextSource) { // Avoid bugs when hasOwnProperty is shadowed if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) { to[nextKey] = nextSource[nextKey]; } } } } return to; }, writable: true, configurable: true }); } // window.fetch polyfill https://github.com/github/fetch/blob/v0.11.0/fetch.js - chosen for IE9 compatibility if(typeof window.fetch !== 'function') { (function(self){"use strict";if(self.fetch){return}function normalizeName(name){if(typeof name!=="string"){name=String(name)}if(/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(name)){throw new TypeError("Invalid character in header field name")}return name.toLowerCase()}function normalizeValue(value){if(typeof value!=="string"){value=String(value)}return value}function Headers(headers){this.map={};if(headers instanceof Headers){headers.forEach(function(value,name){this.append(name,value)},this)}else if(headers){Object.getOwnPropertyNames(headers).forEach(function(name){this.append(name,headers[name])},this)}}Headers.prototype.append=function(name,value){name=normalizeName(name);value=normalizeValue(value);var list=this.map[name];if(!list){list=[];this.map[name]=list}list.push(value)};Headers.prototype["delete"]=function(name){delete this.map[normalizeName(name)]};Headers.prototype.get=function(name){var values=this.map[normalizeName(name)];return values?values[0]:null};Headers.prototype.getAll=function(name){return this.map[normalizeName(name)]||[]};Headers.prototype.has=function(name){return this.map.hasOwnProperty(normalizeName(name))};Headers.prototype.set=function(name,value){this.map[normalizeName(name)]=[normalizeValue(value)]};Headers.prototype.forEach=function(callback,thisArg){Object.getOwnPropertyNames(this.map).forEach(function(name){this.map[name].forEach(function(value){callback.call(thisArg,value,name,this)},this)},this)};function consumed(body){if(body.bodyUsed){return Promise.reject(new TypeError("Already read"))}body.bodyUsed=true}function fileReaderReady(reader){return new Promise(function(resolve,reject){reader.onload=function(){resolve(reader.result)};reader.onerror=function(){reject(reader.error)}})}function readBlobAsArrayBuffer(blob){var reader=new FileReader;reader.readAsArrayBuffer(blob);return fileReaderReady(reader)}function readBlobAsText(blob){var reader=new FileReader;reader.readAsText(blob);return fileReaderReady(reader)}var support={blob:"FileReader"in self&&"Blob"in self&&function(){try{new Blob;return true}catch(e){return false}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};function Body(){this.bodyUsed=false;this._initBody=function(body){this._bodyInit=body;if(typeof body==="string"){this._bodyText=body}else if(support.blob&&Blob.prototype.isPrototypeOf(body)){this._bodyBlob=body}else if(support.formData&&FormData.prototype.isPrototypeOf(body)){this._bodyFormData=body}else if(!body){this._bodyText=""}else if(support.arrayBuffer&&ArrayBuffer.prototype.isPrototypeOf(body)){}else{throw new Error("unsupported BodyInit type")}if(!this.headers.get("content-type")){if(typeof body==="string"){this.headers.set("content-type","text/plain;charset=UTF-8")}else if(this._bodyBlob&&this._bodyBlob.type){this.headers.set("content-type",this._bodyBlob.type)}}};if(support.blob){this.blob=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return Promise.resolve(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as blob")}else{return Promise.resolve(new Blob([this._bodyText]))}};this.arrayBuffer=function(){return this.blob().then(readBlobAsArrayBuffer)};this.text=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return readBlobAsText(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as text")}else{return Promise.resolve(this._bodyText)}}}else{this.text=function(){var rejected=consumed(this);return rejected?rejected:Promise.resolve(this._bodyText)}}if(support.formData){this.formData=function(){return this.text().then(decode)}}this.json=function(){return this.text().then(JSON.parse)};return this}var methods=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function normalizeMethod(method){var upcased=method.toUpperCase();return methods.indexOf(upcased)>-1?upcased:method}function Request(input,options){options=options||{};var body=options.body;if(Request.prototype.isPrototypeOf(input)){if(input.bodyUsed){throw new TypeError("Already read")}this.url=input.url;this.credentials=input.credentials;if(!options.headers){this.headers=new Headers(input.headers)}this.method=input.method;this.mode=input.mode;if(!body){body=input._bodyInit;input.bodyUsed=true}}else{this.url=input}this.credentials=options.credentials||this.credentials||"omit";if(options.headers||!this.headers){this.headers=new Headers(options.headers)}this.method=normalizeMethod(options.method||this.method||"GET");this.mode=options.mode||this.mode||null;this.referrer=null;if((this.method==="GET"||this.method==="HEAD")&&body){throw new TypeError("Body not allowed for GET or HEAD requests")}this._initBody(body)}Request.prototype.clone=function(){return new Request(this)};function decode(body){var form=new FormData;body.trim().split("&").forEach(function(bytes){if(bytes){var split=bytes.split("=");var name=split.shift().replace(/\+/g," ");var value=split.join("=").replace(/\+/g," ");form.append(decodeURIComponent(name),decodeURIComponent(value))}});return form}function headers(xhr){var head=new Headers;var pairs=xhr.getAllResponseHeaders().trim().split("\n");pairs.forEach(function(header){var split=header.trim().split(":");var key=split.shift().trim();var value=split.join(":").trim();head.append(key,value)});return head}Body.call(Request.prototype);function Response(bodyInit,options){if(!options){options={}}this.type="default";this.status=options.status;this.ok=this.status>=200&&this.status<300;this.statusText=options.statusText;this.headers=options.headers instanceof Headers?options.headers:new Headers(options.headers);this.url=options.url||"";this._initBody(bodyInit)}Body.call(Response.prototype);Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})};Response.error=function(){var response=new Response(null,{status:0,statusText:""});response.type="error";return response};var redirectStatuses=[301,302,303,307,308];Response.redirect=function(url,status){if(redirectStatuses.indexOf(status)===-1){throw new RangeError("Invalid status code")}return new Response(null,{status:status,headers:{location:url}})};self.Headers=Headers;self.Request=Request;self.Response=Response;self.fetch=function(input,init){return new Promise(function(resolve,reject){var request;if(Request.prototype.isPrototypeOf(input)&&!init){request=input}else{request=new Request(input,init)}var xhr=new XMLHttpRequest;function responseURL(){if("responseURL"in xhr){return xhr.responseURL}if(/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())){return xhr.getResponseHeader("X-Request-URL")}return}xhr.onload=function(){var status=xhr.status===1223?204:xhr.status;if(status<100||status>599){reject(new TypeError("Network request failed"));return}var options={status:status,statusText:xhr.statusText,headers:headers(xhr),url:responseURL()};var body="response"in xhr?xhr.response:xhr.responseText;resolve(new Response(body,options))};xhr.onerror=function(){reject(new TypeError("Network request failed"))};xhr.open(request.method,request.url,true);if(request.credentials==="include"){xhr.withCredentials=true}if("responseType"in xhr&&support.blob){xhr.responseType="blob"}request.headers.forEach(function(value,name){xhr.setRequestHeader(name,value)});xhr.send(typeof request._bodyInit==="undefined"?null:request._bodyInit)})};self.fetch.polyfill=true})(typeof self!=="undefined"?self:this); } if (typeof window.CustomEvent !== 'function') { function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: null }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.CustomEvent = CustomEvent; } (function() { var language = 'en'; language = 'en'; var modal = false; var istatsLabels = {name: 'newsround' || undefined}; istatsLabels['bbc_site'] = 'cbbc'; istatsLabels['app_name'] = 'newsround'; istatsLabels['app_type'] = 'responsive'; istatsLabels['page_type'] = 'home'; istatsLabels['children_show'] = 'newsround'; function getMetaValue(propertyName) { var metaTag = document.querySelector( "meta[property='" + propertyName + "'], " + "meta[name='" + propertyName + "']"); if (metaTag) { return metaTag.getAttribute("content"); } else { throw new Error('No meta tag called: ' + propertyName) } } function generateCountername() { if (window.location.protocol === 'file:') { return 'local.file'; } var pathName = window.location.pathname .replace(/\/$/, "") .replace(/^\//, "") .replace(/\//g, '.'); return pathName + '.page'; } var additionalPageProperties = {}; additionalPageProperties['app_name'] = 'newsround'; additionalPageProperties['custom_var_1'] = ''; additionalPageProperties['custom_var_2'] = ''; additionalPageProperties['custom_var_5'] = 'cps'; additionalPageProperties['custom_var_7'] = 'newsround'; additionalPageProperties['custom_var_8'] = ''; additionalPageProperties['custom_var_9'] = ''; var page = { name: 'newsround.page' || istatsLabels.name || generateCountername(), destination: 'NEWSROUND' || null, producer: 'NEWSROUND' || null, section: '' || null, site: '' || istatsLabels.bbc_site || istatsLabels.app_name || istatsLabels.prod_name || null, contentId: 'urn:bbc:cps:69a8f5ef-1d3a-b1f9-e050-17ac8045757b' || null, contentType: 'index-home' || null, edition: 'domestic' || null, additionalProperties: additionalPageProperties }; function updatePageData(newData) { page = Object.assign(page, newData); } document.addEventListener('bbc-page-reset', function(event) { if (event.detail && event.detail.page) { updatePageData(event.detail.page); } document.dispatchEvent(new Event('bbc-page-updated')); }); window.bbcpage = { loadModule: function(deps) { return new Promise(function (resolve, reject) { window.require(deps, function () { resolve.apply(this, arguments); }, function (error) { reject(error); }); }) }, loadCSS: function (url, timeout) { return window.bbcpage.loadModule(['orb/lib/_$']) .then(function($) { return new Promise(function(resolve, reject) { var stylesheet = loadCSS(url); $.onloadCSS(stylesheet, function() { resolve(); }); if (timeout) { setTimeout(function () { reject(); }, timeout); } }); }); }, isModal: function () { return modal; }, getLanguage: function () { return new Promise(function(resolve, reject) { resolve(language); }); }, trackRegion: function (region, labels) { return window.bbcpage.loadModule(['istats-1']) .then(function(istats) { var trackLabels = { region: region }; for (var label in labels) { trackLabels[label] = labels[label]; } var linkType = labels.linkType || 'internal'; istats.track(linkType, trackLabels); }); }, getName: function() { return Promise.resolve(page.name); }, getDestination: function() { return Promise.resolve(page.destination); }, getProducer: function() { return Promise.resolve(page.producer); }, getSite: function() { return Promise.resolve(page.site); }, getSection: function() { return Promise.resolve(page.section); }, getContentType: function() { return Promise.resolve(page.contentType); }, getContentId: function() { return Promise.resolve(page.contentId); }, getEdition: function() { return new Promise(function (resolve, reject) { if (page.edition) { resolve(page.edition); return; } try { resolve(getMetaValue('x-audience').toLowerCase()); } catch (err){ // This property is related to Chartbeat; see http://support.chartbeat.com/docs/ if (window._sf_async_config) { resolve(window._sf_async_config.region || null); } } resolve(null); }); }, getReferrer: function() { return Promise.resolve(window.orb && window.orb.referrer !== null && window.orb.referrer !== undefined ? window.orb.referrer : document.referrer); }, getAdditionalProperties: function() { return Promise.resolve(page.additionalProperties); } }; var USERINFO_PREFIX = "www." || "www."; function initUserCache(orbitUser) { var availableAttr = [ 'X-Country', 'X-Ip_is_advertise_combined', 'X-Ip_is_uk_combined' ]; var userCache = availableAttr.reduce(function(user, curr, i) { if (!orbitUser[curr]) { return user; } var res = Object.assign({}, user); res[curr] = orbitUser[curr]; return res; }, {}); if (Object.keys(userCache).length !== availableAttr.length) { userCache._partial = true; } return userCache; } var user = initUserCache({ }); function checkStatus(response) { if (response.status >= 200 && response.status < 300) { return response; } else { var error = new Error(response.statusText); error.response = response; throw error; } } function parseJSON(response) { return response.json(); } var supportsCors = function() { return typeof XMLHttpRequest !== 'undefined' && 'withCredentials' in new XMLHttpRequest(); }; var getUserInfoFallback = function() { return window.bbcpage.loadModule(['orb/fig']) .then(function(orbFig) { return new Promise(function(resolve, reject) { orbFig.load(function(fig) { var getCountryFallback = function() { if (fig.geo.isUK()) { return 'GB'; } else if (fig.geo.isEU()) { return 'EU'; } }; resolve({ 'X-Country': user.country || getCountryFallback(), 'X-Ip_is_uk_combined': fig().uk ? 'yes' : 'no', 'X-Ip_is_advertise_combined': fig().ad ? 'yes' : 'no' }); }, function () { reject('Error determining country. Timeout?'); }); }); }); }; var _userInfoRequest; var getUserInfo = function() { var host = window.location.host.toString().match(/bbc\.com$/) ? 'bbc.com' : 'bbc.co.uk'; var userInfoUrl = "https://" + USERINFO_PREFIX + host + '/userinfo'; if (!user._partial) { return Promise.resolve(user); } if (!_userInfoRequest) { if (typeof window.fetch === 'undefined' || !supportsCors()) { _userInfoRequest = getUserInfoFallback(); } else { _userInfoRequest = window.fetch(userInfoUrl, { credentials: 'same-origin' }) .then(checkStatus) .then(parseJSON) .then(function(userInfo) { user = userInfo; return user; }); } } return _userInfoRequest; }; window.bbcuser = { getHashedId: function() { return window.bbcpage.loadModule(['idcta-v2/idcta-1']) .then(function(idcta) { return idcta.getCookieInstance().getHidFromCookie(); }); }, getCountry: function() { if (user['X-Country']) { return Promise.resolve(user['X-Country']); } return getUserInfo().then(function(userInfo) { return userInfo['X-Country'] || 'GB'; }); }, isUKCombined: function() { return getUserInfo().then(function(userInfo) { if (!userInfo['X-Ip_is_uk_combined']) { throw new Error('missing isUKCombined from userinfo response'); } return userInfo['X-Ip_is_uk_combined'].toLowerCase() === 'yes'; }) }, canSeeAdverts: function() { return getUserInfo().then(function(userInfo) { if (!userInfo['X-Ip_is_advertise_combined']) { throw new Error('missing canSeeAdverts from userinfo response'); } return userInfo['X-Ip_is_advertise_combined'].toLowerCase() === "yes"; }); }, isSignedIn: function() { return window.bbcpage.loadModule(['idcta-v2/idcta-1']) .then(function(idcta) { return (idcta && idcta.getCookieInstance().hasCookie()); }); }, allowsPerformanceCookies: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled() && !!bbccookies.readPolicy('performance'); }); }, allowsFunctionalCookies: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled() && !!bbccookies.readPolicy('personalisation'); }); }, getCookieValue: function(cookieName) { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return bbccookies.get(cookieName); }); }, resetCookiesPreferences: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { bbccookies.setDefaultCookiesSingleDomain(); }); }, hasCookiesEnabled: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled(); }); }, hasSeenCookieBanner: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function (bbccookies) { return !!bbccookies.isCookiePolicySet(); }); }, logEvent: function (verb, noun, extraLabels) { return window.bbcuser.hasCookiesEnabled() .then(function(allowsCookies) { if (allowsCookies) { return window.bbcpage.loadModule(['istats-1']) .then(function(istats) { istats.log(verb, noun, extraLabels); }); } else { throw new Error('User cannot be tracked due to cookies preferences.'); } }); }, }; }());</script><script src="https://web.archive.org/web/20200507070616js_/https://nav.files.bbci.co.uk/orbit/1b2e292884201dd13064a9204e177864/js/require.min.js"></script> <script src="https://web.archive.org/web/20200507070616js_/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-456.e308d0a/cookie-banner/cookie-library.min.js"></script><script type="text/javascript">if (window.define !== undefined) { define('orb/cookies', function() { return window.bbccookies; }); }</script> <script src="https://web.archive.org/web/20200507070616js_/https://nav.files.bbci.co.uk/orbit/1b2e292884201dd13064a9204e177864/js/api.min.js"></script><script type="text/javascript">window.bbcFlagpoles_istats="ON",require.config({paths:{"istats-1":"https://web.archive.org/web/20200507070616/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-456.e308d0a/istats/istats-1"}}),require(["istats-1","orb/cookies"],function(a,t){if(t.isAllowed("s1")){var e=(o=document.location.href.match(/^(?:https|http):\/\/\w*\.(?:(int|test|stage|live|)\.)?bbc\.(?:co\.uk|com)/))?void 0===o[1]||""===o[1]||"live"===o[1]?"//web.archive.org/web/20200507070616/https://sa.bbc.co.uk/bbc/bbc/s":"//web.archive.org/web/20200507070616/https://sa.bbc.co.uk/bbc/"+o[1]+"/s":"//web.archive.org/web/20200507070616/https://sa.bbc.co.uk/bbc/test/s";a.addCollector({name:"default",url:e,separator:"&"});var s="newsround";a.setCountername(s),window.istats_countername&&a.setCountername(window.istats_countername),a.addLabels("ml_name=webmodule&ml_version=0.0.2-456.e308d0a&blq_e=orbit&blq_r=orbit&blq_s=orbit&blq_v=cbbc&language=en&bbc_site=cbbc&app_name=newsround&app_type=responsive&page_type=home&children_show=newsround")}var o});</script><link rel="stylesheet" href="https://web.archive.org/web/20200507070616cs_/https://static.files.bbci.co.uk/account/id-cta/1.43.0/style/id-cta.css"><!--[if IE 8]><link href="https://static.files.bbci.co.uk/account/id-cta/1.43.0/style/ie8.css" rel="stylesheet"/> <![endif]--><script type="text/javascript">(function() {if (!window.require) {throw new Error('idcta: could not find require module');}if (typeof(map) == 'undefined') {var map = {};}if (!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect) {document.documentElement.className += ' id-svg';}var ptrt = new RegExp("[\\?&]ptrt=([^&]*)").exec(document.location.href);var ENDPOINT_URL = 'https://web.archive.org/web/20200507070616/https://idcta.api.bbc.co.uk';var ENDPOINT_CONFIG = ('/idcta/config?callback=&context=cbbc&ptrt=' + encodeURIComponent((ptrt ? ptrt[1] : document.location.href))).replace(/\&/g, '&');var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback=';function hasPromise() {var P = window.Promise;var promiseToString = null;if (P) {try {promiseToString = Object.prototype.toString.call(P.resolve());} catch(e) {/*silently ignored*/}}return (promiseToString === '[object Promise]' && !P.cast);}if (hasPromise()) {define('idcta/es6-promise', function() {return window.Promise;});define('idcta-v2/es6-promise', function() {return window.Promise;});}map['idcta-v2'] = 'https://web.archive.org/web/20200507070616/https://static.files.bbci.co.uk/account/id-cta/1.43.0/modules/idcta-v2';map['idcta-v2/config'] = ENDPOINT_URL + ENDPOINT_CONFIG;map['idcta-v2/translations'] = ENDPOINT_URL + ENDPOINT_TRANSLATIONS;map['idcta'] = 'https://web.archive.org/web/20200507070616/https://static.files.bbci.co.uk/account/id-cta/1.8.2/modules/idcta';map['idcta-v2/idcta-1'] = 'https://web.archive.org/web/20200507070616/https://static.files.bbci.co.uk/account/id-cta/1.43.0/modules/idcta-v2/dist/idcta-1.min';map['idcta-v2/experiment-snippet'] = 'https://web.archive.org/web/20200507070616/https://cdn.optimizely.com/public/4621041136/s/idcta_live';const idctaShim = {deps: ['idcta-v2/idcta-1'],};require({shim: {'idcta-v2/statusbar': idctaShim,'idcta-v2/id-config': idctaShim},map: {'*': {'idcta/idcta-1': 'idcta-v2/idcta-1','idcta': 'idcta-v2',}},paths: map});window.idctaBaseUrl = ENDPOINT_URL;define('idcta/config', ['idcta-v2/config'], function(data) {return data;});define('idcta/translations', ['idcta-v2/translations'], function(data) {return data;});})();</script> <!-- BBCDOTCOM head --><script type="text/javascript">/*<![CDATA[*/ var _sf_startpt = (new Date()).getTime(); /*]]>*/</script><style type="text/css">.bbccom_display_none{display:none;}</style><script type="text/javascript">/*<![CDATA[*/ var bbcdotcomConfig, googletag = googletag || {}; googletag.cmd = googletag.cmd || [], bbcdotcomScripts = [], tp = window.tp || []; var bbcdotcom = false; (function(){ if(typeof require !== 'undefined') { require({ paths:{ "bbcdotcom":"https://web.archive.org/web/20200507070616/https://static.bbc.co.uk/bbcdotcom/4.2.0/script" } }); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ var bbcdotcom = { adverts: { keyValues: { set: function() {} } }, advert: { write: function () {}, show: function () {}, isActive: function () { return false; }, layout: function() { return { reset: function() {} } } }, config: { init: function() {}, isActive: function() {}, setSections: function() {}, isAdsEnabled: function() {}, setAdsEnabled: function() {}, isAnalyticsEnabled: function() {}, setAnalyticsEnabled: function() {}, setAssetPrefix: function() {}, setFlagpoles: function() {}, setVersion: function () {}, setJsPrefix: function() {}, setSwfPrefix: function() {}, setCssPrefix: function() {}, setConfig: function() {}, getAssetPrefix: function() {}, getJsPrefix: function () {}, getSwfPrefix: function () {}, getCssPrefix: function () {}, isOptimizelyEnabled: function() {}, isThirdPartyDisabled: function() {}, isThirdPartyDisabledEU: function() {}, setEU: function() {} }, survey: { init: function(){ return false; } }, data: {}, init: function() {}, objects: function(str) { return false; }, locale: { set: function() {}, get: function() {} }, setAdKeyValue: function() {}, utils: { addEvent: function() {}, addHtmlTagClass: function() {}, log: function () {} }, addLoadEvent: function() {} }; /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (typeof orb !== 'undefined' && typeof orb.fig === 'function') { if (orb.fig('ad') && orb.fig('uk') == 0) { bbcdotcom.data = { ads: (orb.fig('ad') ? 1 : 0), stats: (orb.fig('uk') == 0 ? 1 : 0), statsProvider: orb.fig('ap') }; } } else { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200507070616/https://www.bbc.com/wwscripts/data">\x3C/script>'); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (typeof orb === 'undefined' || typeof orb.fig !== 'function') { bbcdotcom.data = { ads: bbcdotcom.data.a, stats: bbcdotcom.data.b, statsProvider: bbcdotcom.data.c }; } if (bbcdotcom.data.ads == 1) { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200507070616/https://www.bbc.com/wwscripts/flag">\x3C/script>'); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (window.bbcdotcom && (typeof bbcdotcom.flag == 'undefined' || (typeof bbcdotcom.data.ads !== 'undefined' && bbcdotcom.flag.a != 1))) { bbcdotcom.data.ads = 0; } if (/[?|&]ads/.test(window.location.href) || /(^|; )ads=on; /.test(document.cookie) || /; ads=on(; |$)/.test(document.cookie)) { bbcdotcom.data.ads = 1; bbcdotcom.data.stats = 1; } if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcom.assetPrefix = "https://web.archive.org/web/20200507070616/https://static.bbc.co.uk/bbcdotcom/4.2.0/"; if (/(sandbox|int)(.dev)*.bbc.co*/.test(window.location.href) || /[?|&]ads-debug/.test(window.location.href) || document.cookie.indexOf('ads-debug=') !== -1) { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200507070616/https://static.bbc.co.uk/bbcdotcom/4.2.0/script/dist/bbcdotcom.dev.js">\x3C/script>'); } else { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200507070616/https://static.bbc.co.uk/bbcdotcom/4.2.0/script/dist/bbcdotcom.js">\x3C/script>'); } } })(); /*]]>*/</script><script type="text/javascript">if (window.bbcdotcom && bbcdotcom.data.stats == 1) { document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200507070616/https://secure-us.imrworldwide.com/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200507070616/https://me-cdn.effectivemeasure.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200507070616/https://ssc.api.bbc.com/">'); } if (window.bbcdotcom && bbcdotcom.data.ads == 1) { document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200507070616/https://www.googletagservices.com/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200507070616/https://bbc.gscontxt.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200507070616/https://tags.crwdcntrl.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200507070616/https://ad.crwdcntrl.net/">'); }</script><script type="text/javascript">if (window.bbcdotcom && bbcdotcom.data.ads == 1) { document.write('<meta name="google-site-verification" content="auTeTTwSt_KBY_4iDoR00Lwb7-qzx1IgzJy6ztaWgEI" />'); }</script><script type="text/javascript">/*<![CDATA[*/ (function(){ var GDPR_COUNTRIES = ['AT', 'BE', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'GR', 'HU', 'IE', 'IT', 'LV', 'LT', 'LU', 'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE', 'IS', 'LI', 'NO', 'CH']; if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcomConfig = {"adFormat":"standard","adKeyword":"","adMode":"smart","adsEnabled":true,"appAnalyticsSections":"","asyncEnabled":true,"disableInitialLoad":false,"advertInfoPageUrl":"https:\/\/web.archive.org\/web\/20200507070616\/https:\/\/www.bbc.com\/privacy\/cookies\/international\/","advertisementText":"Advertisement","analyticsEnabled":true,"thirdPartyDisabled":false,"sherlockEnabled":false,"appName":"","assetPrefix":"https:\/\/web.archive.org\/web\/20200507070616\/https:\/\/static.bbc.co.uk\/bbcdotcom\/4.2.0\/","customAdParams":[],"customStatsParams":[],"headline":"","id":"","inAssociationWithText":"in association with","keywords":"","language":"","orbTransitional":false,"optimizelyEnabled":true,"palEnv":"live","productName":"","sections":[],"comScoreEnabled":true,"comscoreSite":"bbc","comscoreID":"19293874","comscorePageName":"","slots":"","sponsoredByText":"is sponsored by","adsByGoogleText":"Ads by Google","summary":"","type":"","features":{"testfeature":{"name":"testfeature","envs":["sandbox","int","test"],"on":true,"options":{},"override":null},"lxadverts":{"name":"lxadverts","envs":[],"on":true,"options":{},"override":null}},"staticBase":"\/bbcdotcom","staticHost":"https:\/\/web.archive.org\/web\/20200507070616\/https:\/\/static.bbc.co.uk","staticVersion":"4.2.0","staticPrefix":"https:\/\/web.archive.org\/web\/20200507070616\/https:\/\/static.bbc.co.uk\/bbcdotcom\/4.2.0","dataHttp":"tps.bbc.com","dataHttps":"www.bbc.com","flagHttp":"www.bbc.co.uk","flagHttps":"www.bbc.co.uk","analyticsHttp":"sa.bbc.com","analyticsHttps":"ssa.bbc.com"}; bbcdotcom.config.init(bbcdotcomConfig, bbcdotcom.data, window.location, window.document); bbcdotcom.config.setFlagpoles(bbcdotcom.flag || {}); bbcdotcom.config.setAssetPrefix("https://web.archive.org/web/20200507070616/https://static.bbc.co.uk/bbcdotcom/4.2.0/"); bbcdotcom.config.setVersion("4.2.0"); if (window.bbcuser && window.bbcuser.getCountry && typeof(window.bbcuser.getCountry) === 'function') { window.bbcuser.getCountry().then(function(countryCode) { var isEU = countryCode ? GDPR_COUNTRIES.indexOf(countryCode.toUpperCase()) !== -1 : false; bbcdotcom.config.setEU(isEU); }); } else if (window.orb && window.orb.fig && typeof(window.orb.fig) === 'function') { bbcdotcom.config.setEU(window.orb.fig('eu')); } document.write('<!--[if IE 7]><script type="text/javascript">bbcdotcom.config.setIE7(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 8]><script type="text/javascript">bbcdotcom.config.setIE8(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 9]><script type="text/javascript">bbcdotcom.config.setIE9(true);\x3C/script><![endif]-->'); if (/[?|&]ex-dp/.test(window.location.href) || document.cookie.indexOf('ex-dp=') !== -1) { bbcdotcom.utils.addHtmlTagClass('bbcdotcom-ex-dp'); } } })(); /*]]>*/</script><script type="text/javascript">var initOptimizely = (function(isEnabled){ if(!isEnabled) return; var logger = window.bbcdotcom.Logger('bbcdotcom:head:optimizely'); /* Allow Optimizely in these paths */ var allowPaths = ['/', '/wwhp']; /* Only run on optimizely on homepage */ if (bbcdotcom.utils && allowPaths.indexOf(window.location.pathname) !== -1){ /* set correct OptimizelyURL for prod or sandbox */ var optimizelyURL = "https://web.archive.org/web/20200507070616/https://cdn.optimizely.com/public/4621041136/s/bbccom_sandbox.js"; if(window.location.hostname === 'www.bbc.com') { optimizelyURL = "https://web.archive.org/web/20200507070616/https://cdn.optimizely.com/public/4621041136/s/bbccom_prod.js"; } /* Set cookie to 1 year */ window['optimizely'] = window['optimizely'] || []; window['optimizely'].push({ "type": "cookieExpiration", "cookieExpirationDays": 365 }); document.write('<script type="text/javascript" src="'+optimizelyURL+'">\x3C/script>'); } })( bbcdotcom.config.isOptimizelyEnabled() );</script><script type="text/javascript">/*<![CDATA[*/ if ( window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.ads && bbcdotcom.data.ads == 1 && bbcdotcom.config && bbcdotcom.config.isGrapeshotEnabled && bbcdotcom.config.isGrapeshotEnabled() && bbcdotcom.config.isWorldService && !bbcdotcom.config.isWorldService() ) { var gs_channels="DEFAULT"; (function () { var gsurl = window.location.href.split("?")[0]; bbcdotcomScripts.push({src:'https://web.archive.org/web/20200507070616/https://bbc.gscontxt.net/?url='+encodeURIComponent(gsurl)}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.config && bbcdotcom.config.isLotameActive && bbcdotcom.config.isLotameActive()&& bbcdotcom.config.isLotameEnabled && bbcdotcom.config.isLotameEnabled()){ (function () { var clientId, lotameUrl, lotameAudienceUrl; clientId = (bbcdotcom.config.isWorldService && bbcdotcom.config.isWorldService()) ? '10826' : '10816'; lotameUrl = 'https://web.archive.org/web/20200507070616/https://tags.crwdcntrl.net/c/'+clientId+'/cc.js?ns='+clientId; lotameAudienceUrl = 'https://web.archive.org/web/20200507070616/https://ad.crwdcntrl.net/5/c=10815/pe=y/var=ccauds'; bbcdotcomScripts.push({src:lotameUrl,id:"LOTCC"+clientId}); bbcdotcomScripts.push({src:lotameAudienceUrl}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ /** * ASYNC waits to make any gpt requests until the bottom of the page */ if ( window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.ads && bbcdotcom.data.ads == 1 && bbcdotcom.config && bbcdotcom.config.isAsync && bbcdotcom.config.isAsync() && bbcdotcom.config.isAdsEnabled && bbcdotcom.config.isAdsEnabled() ) { (function () { bbcdotcomScripts.push({src:'https://web.archive.org/web/20200507070616/https://securepubads.g.doubleclick.net/tag/js/gpt.js'}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ /* Load Lotame, Grapeshot and GPT without blocking rendering but executing in order */ if ( window.bbcdotcom && bbcdotcom.config && bbcdotcomScripts.length > 0 ) { (function () { bbcdotcom.checkThirdPartyFirst(function(){ if (!bbcdotcom.config.isThirdPartyDisabledEU()){ bbcdotcomScripts.forEach(function(item) { var script = document.createElement('script'); script.async = false; if(item.id) script.id = item.id; script.src = item.src; document.head.appendChild(script); }); } }); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.head = true; }()); /*]]>*/</script><script type="text/javascript">// Globally available search context window.SEARCHBOX={"variant":"cbbc","locale":"en","feature":"akamai-idcta","navSearchboxStaticPrefix":"https://web.archive.org/web/20200507070616/https://nav.files.bbci.co.uk/searchbox/98f174438ebc473063e6dde132503cbb/","searchboxAppStaticPrefix":"https://web.archive.org/web/20200507070616/https://nav.files.bbci.co.uk/searchbox/98f174438ebc473063e6dde132503cbb/drawer","searchFormHtml":"<div tabindex=\"-1\" data-reactroot=\"\"><div><section class=\"se-searchbox-panel\"><div class=\"se-g-wrap\"><div class=\"se-g-layout\"><div class=\"se-g-layout__item se-searchbox-title\" aria-hidden=\"true\">search</div><div class=\"se-g-layout__item se-searchbox\"><form accept-charset=\"utf-8\" id=\"searchboxDrawerForm\" method=\"get\" action=\"https://search.bbc.co.uk/search\"><label class=\"se-searchbox__input\" for=\"se-searchbox-input-field\"><span class=\"se-sr-only\">Search Term</span><input type=\"text\" name=\"q\" value=\"\" id=\"se-searchbox-input-field\" class=\"se-searchbox__input__field\" maxLength=\"512\" autoComplete=\"off\" autoCorrect=\"off\" autoCapitalize=\"off\" spellcheck=\"false\" tabindex=\"0\"/></label><input type=\"hidden\" name=\"scope\" value=\"\"/><button type=\"submit\" class=\"se-searchbox__submit\" tabindex=\"0\" data-bbc-container=\"se-searchbox-panel\" data-bbc-title=\"search-icon\" data-bbc-metadata=\"{"PAR":"form::1","CHD":"button::1"}\">Search</button><button type=\"button\" class=\"se-searchbox__clear se-searchbox__clear--visible\" tabindex=\"0\" data-bbc-container=\"se-searchbox-panel\" data-bbc-title=\"clear-icon\" data-bbc-metadata=\"{"PAR":"form::1","CHD":"button::2"}\">Close</button></form></div></div></div></section><div aria-live=\"polite\" aria-atomic=\"true\" class=\"se-suggestions-container\"><section class=\"se-g-wrap\"></section></div></div></div>","searchScopePlaceholder":"<input type=\"hidden\" name=\"scope\" id=\"orb-search-scope\" value=\"cbbc\">","searchScopeParam":"?scope=cbbc","searchScopeTemplate":"cbbc","searchPlaceholderWrapperStart":"","searchPlaceholderWrapperEnd":""}; window.SEARCHBOX.suppress = false; window.SEARCHBOX.searchScope = SEARCHBOX.searchScopeTemplate.split('-')[0];</script><link rel="stylesheet" href="https://web.archive.org/web/20200507070616cs_/https://nav.files.bbci.co.uk/searchbox/98f174438ebc473063e6dde132503cbb/css/main.css"><!--[if IE 8]> <script type="text/javascript" src="https://nav.files.bbci.co.uk/searchbox/98f174438ebc473063e6dde132503cbb/script/html5shiv.min.js"></script> <script type="text/javascript">window['searchboxIEVersion'] = 8;</script> <link rel="stylesheet" href="https://nav.files.bbci.co.uk/searchbox/98f174438ebc473063e6dde132503cbb/css/ie8.css"> <![endif]--><!--[if IE 9]> <script type="text/javascript">window['searchboxIEVersion'] = 9;</script> <![endif]--><script type="text/javascript">require.config({ "paths": { "orb/async/_footerpromo": 'https://web.archive.org/web/20200507070616/https://nav.files.bbci.co.uk/navpromo/1a758b67be1b457163af81ff41c92946/js/async/_footerpromo' } });</script> <script type="text/javascript">"use strict";!function(){window.__reverbStaticLocation="https://web.archive.org/web/20200507070616/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/",window.__smarttagVersion="5.18.2",window.__reverb={},window.__reverb.__reverbLoadedPromise=new Promise(function(e,n){window.__reverb.__resolveReverbLoaded=e,window.__reverb.__rejectReverbLoaded=n}),window.__reverb.__reverbTimeout=setTimeout(function(){window.__reverb.__rejectReverbLoaded()},5e3);var n=function(r,d){window.__reverb.__reverbLoadedPromise.then(function(e){if(r&&r.detail){var n=r.detail.label,t=r.detail.type,i=r.detail.elem,o=r.detail.originalEvent;r.detail.isClick&&(d=r.detail.isClick),e.userActionEvent(t,n,r.detail,i,o,d)}},function(){console.log("Reverb failed to load. Event not sent")})};document.addEventListener("bbc-user-event",function(e){n(e,!1)}),document.addEventListener("bbc-user-click",function(e){n(e,!0)}),document.addEventListener("bbc-page-updated",function(){window.__reverb.__reverbLoadedPromise.then(function(e){e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Reverb failed to load. Event not sent")})})}();</script><script type="text/javascript" src="https://web.archive.org/web/20200507070616js_/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/reverb-1.4.0.js" async=""></script><script type="text/javascript">window.__detectview={clickManagementEnabled:false};</script><link rel="preload" as="script" href="//web.archive.org/web/20200507070616/https://m.files.bbci.co.uk/modules/morph-vendor/1.0.2/bundle.vendor.js"/><link rel="preload" as="script" href="//web.archive.org/web/20200507070616/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle.js"/><script>window.Morph = {}</script><script type="text/javascript">Morph.markPerformance = function(label) { if(window.performance && window.performance.mark) { window.performance.mark(label); } }; Morph.versions = {}; Morph.modules = {}; Morph.config = { cdn: "m.files.bbci.co.uk", pushEnv: "live" }; Morph.styles = {}; Morph.styleSrc = []; Morph.toInit = {bundles: [], registers: [], payloads: []}; Morph.initStyles = function() { if (!Morph.enhanced) { var eles = Array.prototype.slice.call(document.getElementsByTagName('noscript')); for (var i = 0, len = eles.length; i<len; i++) { if (eles[i].className === 'morph-core-style') { document.write(eles[i].innerText); eles[i].parentNode.removeChild(eles[i]); } } return; } for (var j = 0, jLen = Morph.styleSrc.length; j<jLen; j++) { document.write(Morph.styleSrc[j]); } Morph.styleSrc = []; };</script><script type="text/javascript">Morph.forceCore = window.location.search.indexOf('morph-disable-enhanced=1')>-1; Morph.modernBrowser = ( 'addEventListener' in window && 'querySelector' in document && 'localStorage' in window ); Morph.isOperaMini = ( window.navigator.userAgent.indexOf('Opera Mini/')>-1 && window.navigator.userAgent.indexOf('Presto/')>-1 ); Morph.enhanced = (!Morph.forceCore && Morph.modernBrowser && !Morph.isOperaMini);</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-grandstand/5.4.2/latin/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-grandstand/5.4.2/latin"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-grandstand/5.4.2/latin/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-super-promo/3.1.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-super-promo/3.1.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-super-promo/3.1.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-button/4.0.0/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-button/4.0.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-button/4.0.0/enhanced.css\"/>"); }</script><script>if (Morph.enhanced) { Morph.styles["bbc-morph-gel-icons/3.0.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-top-stories/6.1.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-top-stories/6.1.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-top-stories/6.1.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-promo/5.1.0/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-promo/5.1.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-promo/5.1.0/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-smp/5.0.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-smp/5.0.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-smp/5.0.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-more-stories/4.1.3/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-more-stories/4.1.3"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-more-stories/4.1.3/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-bulletin-promo/4.2.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-bulletin-promo/4.2.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-bulletin-promo/4.2.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-cbbc-nav/4.1.0/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-cbbc-nav/4.1.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-cbbc-nav/4.1.0/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-header/6.1.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200507070616cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-anchors/2.1.2/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-anchors/2.1.2"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-anchors/2.1.2/enhanced.css\"/>"); }</script><script type="text/javascript">Morph.initStyles(); /* u434793513501063 */</script><script type="text/javascript"> var domain = "co.uk"; var _sf_async_config = _sf_async_config || {}; var _sf_startpt=(new Date()).getTime(); _sf_async_config.domain = "www" + ".bbc." + domain; _sf_async_config.uid = 50924; _sf_async_config.title = window.document.title; _sf_async_config.path = "bbc." + domain + "/newsround" + ""; _sf_async_config.sections = "newsround"; </script> <title>Home - CBBC Newsround</title> <meta content="Home - CBBC Newsround" property="og:title"/> <meta name="description" content="The home of news and fun facts for kids. Find out what is going on, with stories, pictures and videos. Try a quiz or one of our free games."/><meta content="The home of news and fun facts for kids. Find out what is going on, with stories, pictures and videos. Try a quiz or one of our free games." property="og:description"/> <meta content="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/newsround" property="og:url"/><link rel="canonical" href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/newsround"/> <meta content="//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/og-newsround.png" property="og:image"/> <link href="//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/apple-touch-icon.png" rel="apple-touch-icon"/> <link href="//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/favicon.ico" rel="shortcut icon" type="image/x-icon"/> <link href="//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/favicon-16x16.png" rel="icon" type="image/png" sizes="16x16"/> <link href="//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/favicon-32x32.png" rel="icon" type="image/png" sizes="32x32"/> <link href="//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/favicon-96x96.png" rel="icon" type="image/png" sizes="96x96"/> <script type="text/javascript"> window.addEventListener('DOMContentLoaded', function() { const html = document.querySelector('.no-js'); if (html.classList) { html.classList.remove('no-js'); } }); </script> <style> .b-reith-sans-loaded { font-feature-settings: 'ss01'; } </style></head><body><noscript><p style="position: absolute; top: -999em"><img src="https://web.archive.org/web/20200507070616im_/https://a1.api.bbc.co.uk/hit.xiti?&col=1&from=p&ptag=js&s=598253&p=newsround.page&x1=[urn:bbc:cps:69a8f5ef-1d3a-b1f9-e050-17ac8045757b]&x2=[responsive]&x3=[bbc_website]&x4=[en]&x7=[index-home]&x8=[reverb-1.4.0-nojs]&x11=[NEWSROUND]&x12=[NEWSROUND]" height="1" width="1" alt=""></p></noscript> <!-- BBCDOTCOM bodyFirst --><div id="bbccom_interstitial_ad" class="bbccom_display_none"></div><div id="bbccom_interstitial" class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { googletag.cmd.push(function() { googletag.display('bbccom_interstitial'); }); } }()); /*]]>*/</script></div><div id="bbccom_wallpaper_ad" class="bbccom_display_none"></div><div id="bbccom_wallpaper" class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ (function() { var wallpaper; if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { if (bbcdotcom.config.isAsync()) { googletag.cmd.push(function() { googletag.display('bbccom_wallpaper'); }); } else if (typeof googletag !== "undefined" && typeof googletag.display === "function") { googletag.display("wallpaper"); } wallpaper = bbcdotcom.adverts.adRegister.getAd('wallpaper'); } }()); /*]]>*/</script></div><script type="text/javascript">/*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { document.write(unescape('%3Cscript id="gnlAdsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } if (window.bbcdotcom && bbcdotcom.config.isAnalyticsEnabled()) { document.write(unescape('%3Cscript id="gnlAnalyticsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } }()); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.bodyFirst = true; }()); /*]]>*/</script> <div id="cookiePrompt"></div> <!--[if (gt IE 8) | (IEMobile)]><!--><header id="orb-banner" role="banner" aria-label="BBC"><!--<![endif]--><!--[if (lt IE 9) & (!IEMobile)]> <![if (IE 8)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie8" aria-label="BBC"> <![endif]> <![if (IE 7)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie7" aria-label="BBC"> <![endif]> <![if (IE 6)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie6" aria-label="BBC"> <![endif]> <![endif]--><div id="orb-header" class="orb-nav-pri orb-nav-pri-white orb-nav-empty" dir="ltr"><div class="orb-nav-pri-container b-r b-g-p"><div class="orb-nav-section orb-nav-blocks"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/">Homepage</a></div><section><div class="orb-skip-links"><h2>Accessibility links</h2><ul><li><a href="#orb-modules">Skip to content</a></li><li><a id="orb-accessibility-help" href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li></ul></div></section><div id="mybbc-wrapper" class="orb-nav-section orb-nav-id orb-nav-focus orb-nav-id-default"><div id="idcta-statusbar" class="orb-nav-section orb-nav-focus" data-bbc-container="id-cta" data-bbc-event-type="click" data-bbc-ignore-views="1" data-bbc-metadata="{"id-cta-type": "statusbar-orb"}" data-bbc-source="responsive_web" data-bbc-title="id-cta-sign-in"><a id="idcta-link" href="https://web.archive.org/web/20200507070616/https://account.bbc.com/account?context=cbbc&ptrt=https%3A%2F%2Fwww.bbc.co.uk%2Fnewsround"><span id="idcta-username">BBC Account</span></a></div><script type="text/javascript">require(['idcta/statusbar'], function (statusbar) {new statusbar.Statusbar({id: 'idcta-statusbar', publiclyCacheable: true});});</script></div><nav role="navigation" aria-label="BBC" class="orb-nav"><div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"><ul><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-iplayer orb-d"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/tv/cbbc">CBBC iPlayer</a></li><li class="orb-nav-newsround"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/newsround">Newsround</a></li><li class="orb-nav-bitesize orb-d"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-ownit orb-d"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.com/ownit">Own It</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-cbbctv"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/iplayer/guide/cbbc">CBBC on TV</a></li><li class="orb-nav-cbbchelp orb-d"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/cbbc/curations/cbbc-help">CBBC Help</a></li><li id="orb-nav-more" style="width: 88px" aria-controls="orb-panel-more"><a href="#orb-footer" data-alt="More" class="istats-notrack">Menu<span class="orb-icon orb-icon-arrow"></span></a></li></ul></div></nav><div class="orb-nav-section orb-nav-search"><a class="orb-search__button" href="https://web.archive.org/web/20200507070616/https://search.bbc.co.uk/search?scope=cbbc" title="Search the BBC">Search</a><form class="b-f" id="orb-search-form" role="search" method="get" action="https://web.archive.org/web/20200507070616/https://search.bbc.co.uk/search" accept-charset="utf-8"><div><input type="hidden" name="scope" id="orb-search-scope" value="cbbc"><label for="orb-search-q">Search the BBC</label><input id="orb-search-q" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" name="q" placeholder="Search"><button id="orb-search-button" class="orb-search__button">Search the BBC</button><input type="hidden" name="suggid" id="orb-search-suggid"></div></form></div></div><div id="orb-panels"></div></div></header> <!-- Styling hook for shared modules only --> <div id="orb-modules"> <div id="u434793513501063"><div data-reactid=".1fz6v9zaxog" data-react-checksum="-1781379128"><div class="newsround-cbbc-nav-wrapper" data-reactid=".1fz6v9zaxog.0"><div class="newsround-cbbc-nav-component newsround-cbbc-nav-component-padding-override" data-reactid=".1fz6v9zaxog.0.0"><div class="newsround-cbbc-nav-component__container" data-reactid=".1fz6v9zaxog.0.0.0"><nav class="newsround-cbbc-nav-component__menu" data-reactid=".1fz6v9zaxog.0.0.0.0"><div class="newsround-cbbc-nav-component__bar" data-reactid=".1fz6v9zaxog.0.0.0.0.0"><a class="newsround-cbbc-nav-component__product" href="/web/20200507070616/https://www.bbc.co.uk/cbbc" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-home" data-reactid=".1fz6v9zaxog.0.0.0.0.0.0">Home</a><button id="newsround-cbbc-nav-component__toggle" class="newsround-cbbc-nav-component__toggle" data-reactid=".1fz6v9zaxog.0.0.0.0.0.1"><span id="newsround-cbbc-nav-component__toggle-title" class="newsround-cbbc-nav-component__toggle-title" data-reactid=".1fz6v9zaxog.0.0.0.0.0.1.0">Menu</span><span class="newsround-cbbc-nav-component__toggle-icon" data-reactid=".1fz6v9zaxog.0.0.0.0.0.1.1"></span></button></div><div id="newsround-cbbc-nav-component__list" class="newsround-cbbc-nav-component__list" data-reactid=".1fz6v9zaxog.0.0.0.0.1"><ul class="newsround-cbbc-nav-component__list-inner" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0"><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--home" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-home" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$home"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--home" href="/web/20200507070616/https://www.bbc.co.uk/cbbc" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$home.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--home" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$home.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--home" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$home.0.1">Home</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--shows" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-shows" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$shows"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--shows" href="/web/20200507070616/https://www.bbc.co.uk/cbbc/shows" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$shows.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--shows" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$shows.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--shows" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$shows.0.1">Shows</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--games" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-games" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$games"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--games" href="/web/20200507070616/https://www.bbc.co.uk/cbbc/games" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$games.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--games" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$games.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--games" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$games.0.1">Games</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--quizzes" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-quizzes" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$quizzes"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--quizzes" href="/web/20200507070616/https://www.bbc.co.uk/cbbc/quizzes" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$quizzes.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--quizzes" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$quizzes.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--quizzes" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$quizzes.0.1">Quizzes</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--watch" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-watch" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$watch"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--watch" href="/web/20200507070616/https://www.bbc.co.uk/cbbc/watch" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$watch.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--watch" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$watch.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--watch" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$watch.0.1">Watch</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--joinin" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-joinin" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$joinin"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--joinin" href="/web/20200507070616/https://www.bbc.co.uk/cbbc/joinin" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$joinin.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--joinin" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$joinin.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--joinin" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$joinin.0.1">Join In</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--puzzles" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-puzzles" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$puzzles"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--puzzles" href="/web/20200507070616/https://www.bbc.co.uk/cbbc/puzzles" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$puzzles.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--puzzles" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$puzzles.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--puzzles" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$puzzles.0.1">Puzzles</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--newsround newsround-cbbc-nav-component__item--current" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-newsround" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$newsround"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--newsround newsround-cbbc-nav-component__link--current" href="/web/20200507070616/https://www.bbc.co.uk/newsround" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$newsround.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--newsround" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$newsround.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--newsround" data-reactid=".1fz6v9zaxog.0.0.0.0.1.0.$newsround.0.1">Newsround</span></a></li></ul></div></nav></div></div></div><section role="main" data-reactid=".1fz6v9zaxog.1"><div class="o-mvt-container" data-reactid=".1fz6v9zaxog.1.0"><script src="https://web.archive.org/web/20200507070616js_/https://cdn.optimizely.com/public/4621041136/s/newsround_prod.js" data-reactid=".1fz6v9zaxog.1.0.0"></script></div><header class="newsround-header__header" data-reactid=".1fz6v9zaxog.1.1"><div class="newsround-header__orb" style="background-image:url(//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/images/newsround-orb.png);" data-reactid=".1fz6v9zaxog.1.1.0"></div><div class="newsround-header__wrapper" data-reactid=".1fz6v9zaxog.1.1.1"><div class="newsround-header__container" data-reactid=".1fz6v9zaxog.1.1.1.0"><a class="newsround-header__link" href="/web/20200507070616/https://www.bbc.co.uk/newsround" data-istats-track="true" data-istats-track-link-location="nr_nav-homelogo" data-reactid=".1fz6v9zaxog.1.1.1.0.0"><div class="newsround-header__logo" style="background-image:url(//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/images/newsround-logo.png);background:url(//web.archive.org/web/20200507070616im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/images/newsround-logo.svg) no-repeat;" data-reactid=".1fz6v9zaxog.1.1.1.0.0.0"><h1 class="newsround-header__off-screen" data-reactid=".1fz6v9zaxog.1.1.1.0.0.0.0">Newsround</h1></div></a><div class="newsround-header__button" data-istats-track="true" data-istats-track-link-location="nr_nav-bulletin" data-bbc-container="home-watch-newsround-button" data-bbc-metadata="{"PAR":"home-watch-newsround-button","CHD":"button"}" data-bbc-source="newsround" data-bbc-title="Watch Newsround" data-reactid=".1fz6v9zaxog.1.1.1.0.1"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/news/watch_newsround" class="newsround-button newsround-button--teal" aria-label="" data-reactid=".1fz6v9zaxog.1.1.1.0.1.0"><div class="gel-icon gel-icon--play newsround-button__icon" data-reactid=".1fz6v9zaxog.1.1.1.0.1.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.1.1.0.1.0.0.0"><title data-reactid=".1fz6v9zaxog.1.1.1.0.1.0.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.1.1.0.1.0.0.0.1"></path></svg></div><span data-reactid=".1fz6v9zaxog.1.1.1.0.1.0.1:0">Watch </span><span class="newsround-header__button__bp-text" data-reactid=".1fz6v9zaxog.1.1.1.0.1.0.1:1">Newsround</span></a></div></div></div></header><div data-reactid=".1fz6v9zaxog.1.2"></div><section class="newsround-top-stories" data-istats-track-scroll-visibility="nr_home_top_stories" data-reactid=".1fz6v9zaxog.1.3"><div class="newsround-top-stories__wrapper newsround-top-stories__wrapper--with-top-margin newsround-top-stories__wrapper--no-bottom-padding" data-reactid=".1fz6v9zaxog.1.3.0"><div class="newsround-top-stories__container gel-layout--equal" data-reactid=".1fz6v9zaxog.1.3.0.0"><div class="newsround-top-stories__featured-story" data-reactid=".1fz6v9zaxog.1.3.0.0.0"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-1" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::1"}" data-bbc-source="newsround" data-bbc-title="VE Day: What are you doing to celebrate?" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52558191" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/B276/production/_112168654_gettyimages-476156360.jpg" alt="Cupcake-with-British-flag." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.0">VE Day: What are you doing to celebrate?</p><p class="newsround-promo__summary" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.1">On 8 May it's 75 years since VE, or Victory in Europe, Day. Lots of people are celebrating by making bunting or having tea parties. We want to know if you are celebrating and how?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-07T06:20:13+00:00" data-datetime="40 minutes ago" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0.0.1.0">40 minutes ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.0.0.1.1">40 minutes ago</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.3.0.0.0.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-top-stories__stories" data-reactid=".1fz6v9zaxog.1.3.0.0.1"><div class="newsround-top-stories__container" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0"><div class="newsround-top-stories__story" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-2" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::2"}" data-bbc-source="newsround" data-bbc-title="New Banksy art shows NHS staff as superheroes" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52561722" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/18611/production/_112175899_banksy2.jpg" alt="banksy" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.0">New Banksy art shows NHS staff as superheroes</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-07T06:05:15+00:00" data-datetime="55 minutes ago" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0.0.1.0">55 minutes ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.0.0.1.1">55 minutes ago</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52561722.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-3" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::3"}" data-bbc-source="newsround" data-bbc-title="'Let deaf people join in like everyone else!'" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52564053" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/C70D/production/_112175905_p08cgfll.jpg" alt="girl-staring-at-camera" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.0">'Let deaf people join in like everyone else!'</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-07T06:15:10+00:00" data-datetime="45 minutes ago" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0.0.1.0">45 minutes ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.0.0.1.1">45 minutes ago</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52564053.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-4" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::4"}" data-bbc-source="newsround" data-bbc-title="What is the Vesak festival?" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/48106687" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/EFC2/production/_106787316_gettyimages-485020819.jpg" alt="Buddha statue." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.0">What is the Vesak festival?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-07T06:18:41+00:00" data-datetime="41 minutes ago" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0.0.1.0">41 minutes ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48106687.0.0.1.2.0.0.1.1">41 minutes ago</span></time></span></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-5" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::5"}" data-bbc-source="newsround" data-bbc-title="What is VE Day?" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/48201749" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6895/production/_106837762_1.jpg" alt="crowds-celebrating-VE-day." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.0">What is VE Day?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-07T05:35:07+00:00" data-datetime="1 hour ago" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0.0.1.0">1 hour ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$48201749.0.0.1.2.0.0.1.1">1 hour ago</span></time></span></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-6" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::6"}" data-bbc-source="newsround" data-bbc-title="Which wildflowers have YOU spotted on lockdown walks?" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52548733" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/9980/production/_112169293_flowers.jpg" alt="Wild flowers" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.0">Which wildflowers have YOU spotted on lockdown walks?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-07T06:16:20+00:00" data-datetime="44 minutes ago" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0.0.1.0">44 minutes ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.0.0.1.1">44 minutes ago</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52548733.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-7" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::7"}" data-bbc-source="newsround" data-bbc-title="Harry Potter reads Harry Potter!" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52556379" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A0BA/production/_112164114_potter.jpg" alt="harry-potter-daniel-radcliffe." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.0">Harry Potter reads Harry Potter!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T14:51:22+00:00" data-datetime="16 hours ago" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0.0.1.0">16 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.0.0.1.1">16 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.3.0.0.1.0.$52556379.0.0.1.2.1.1">11</span></div></div></div></a></div></div></div></div></div></div></section><section class="newsround-anchors" data-reactid=".1fz6v9zaxog.1.4"><nav class="newsround-anchors__wrapper" data-reactid=".1fz6v9zaxog.1.4.0"><ul class="newsround-anchors__layout newsround-anchors__layout--less-margin" data-reactid=".1fz6v9zaxog.1.4.0.0"><li class="newsround-anchors__button" data-bbc-container="home-anchor-links" data-bbc-metadata="{"PAR":"home-anchor-links","CHD":"button::1"}" data-bbc-source="newsround" data-bbc-title="Coronavirus" data-reactid=".1fz6v9zaxog.1.4.0.0.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround#more-stories-2" class="newsround-button newsround-button--teal" aria-label="Coronavirus" data-reactid=".1fz6v9zaxog.1.4.0.0.0.0"><span data-reactid=".1fz6v9zaxog.1.4.0.0.0.0.1">Coronavirus</span></a></li><li class="newsround-anchors__button" data-bbc-container="home-anchor-links" data-bbc-metadata="{"PAR":"home-anchor-links","CHD":"button::2"}" data-bbc-source="newsround" data-bbc-title="Climate change" data-reactid=".1fz6v9zaxog.1.4.0.0.1"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround#more-stories-3" class="newsround-button newsround-button--teal" aria-label="Climate change" data-reactid=".1fz6v9zaxog.1.4.0.0.1.0"><span data-reactid=".1fz6v9zaxog.1.4.0.0.1.0.1">Climate change</span></a></li><li class="newsround-anchors__button" data-bbc-container="home-anchor-links" data-bbc-metadata="{"PAR":"home-anchor-links","CHD":"button::3"}" data-bbc-source="newsround" data-bbc-title="Gaming" data-reactid=".1fz6v9zaxog.1.4.0.0.2"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround#more-stories-4" class="newsround-button newsround-button--teal" aria-label="Gaming" data-reactid=".1fz6v9zaxog.1.4.0.0.2.0"><span data-reactid=".1fz6v9zaxog.1.4.0.0.2.0.1">Gaming</span></a></li><li class="newsround-anchors__button" data-bbc-container="home-anchor-links" data-bbc-metadata="{"PAR":"home-anchor-links","CHD":"button::4"}" data-bbc-source="newsround" data-bbc-title="Newsround Learn" data-reactid=".1fz6v9zaxog.1.4.0.0.3"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround#more-stories-5" class="newsround-button newsround-button--teal" aria-label="Newsround Learn" data-reactid=".1fz6v9zaxog.1.4.0.0.3.0"><span data-reactid=".1fz6v9zaxog.1.4.0.0.3.0.1">Newsround Learn</span></a></li></ul></nav></section><section id="additional-top-stories" class="newsround-more-stories newsround-more-stories--additional-top-stories" data-istats-track-scroll-visibility="nr_home_more_stories_1" data-reactid=".1fz6v9zaxog.1.5"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".1fz6v9zaxog.1.5.0"><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".1fz6v9zaxog.1.5.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.0"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-1" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/newsround#more-stories-2" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/E1AB/production/_111717775_1_nrcor_tom9.jpg" alt="coronavirus" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.0">Coronavirus: Everything you need to know</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-02T11:52:03+00:00" data-datetime="2 Mar 2020" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0.0.1.0">2 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.0.0.0.1.2.0.0.1.1">2 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-2" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52544813" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/B135/production/_112156354_b6d51053-96ce-401a-885b-efda921569b1.jpg" alt="Doggy spa day" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.0.1.1">2:55</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.0">Does your dog need a spa day?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T13:33:54+00:00" data-datetime="17 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0.0.1.0">17 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52544813.0.0.1.2.0.0.1.1">17 hours ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-3" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52557498" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/AEC0/production/_112163744_p08cfvxf.jpg" alt="Matt-edmondson-mollie-king." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.0.1.1">1:19</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.0">Mollie and Matt tell us about this year's Young Audio Awards</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-07T05:31:41+00:00" data-datetime="1 hour ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0.0.1.0">1 hour ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52557498.0.0.1.2.0.0.1.1">1 hour ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-4" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52555723" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/11E0A/production/_112162237_gettyimages-1158867585.jpg" alt="mars" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.0">The ancient rivers found on Mars</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T08:38:14+00:00" data-datetime="22 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0.0.1.0">22 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.0.0.1.1">22 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52555723.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-5" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52556376" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1082/production/_112162240_gettyimages-970464100.jpg" alt="jojo-siwa." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.0">JoJo Siwa and Meghan Trainor join celebrity USA series of Gogglebox</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T11:10:38+00:00" data-datetime="19 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0.0.1.0">19 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.0.0.1.1">19 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556376.0.0.1.2.1.1">12</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-6" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52549607" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/8BBF/production/_112157753_gettyimages-509689300.jpg" alt="black-hole." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.0">Could this be Earth's closest black hole?!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T13:37:31+00:00" data-datetime="17 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0.0.1.0">17 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.0.0.1.1">17 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52549607.0.0.1.2.1.1">10</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-7" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52483218" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14916/production/_112164248_animals.jpg" alt="zoo-animals." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.0">How are UK zoos managing during lockdown?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T08:40:33+00:00" data-datetime="22 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0.0.1.0">22 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.0.0.1.1">22 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52483218.0.0.1.2.1.1">16</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-8" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52559539" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/368E/production/_112166931_archieparty.jpg" alt="Harry-Meghan-and-Archie." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.0">Harry and Meghan celebrate Archie's first birthday</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T12:38:03+00:00" data-datetime="18 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0.0.1.0">18 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.0.0.1.1">18 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52559539.0.0.1.2.1.1">10</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52562390" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/18692/production/_112168999_gettyimages-955830346.jpg" alt="elon-musk-and-grimes." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.0">Elon Musk's new baby has a very unusual name!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T16:25:49+00:00" data-datetime="14 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0.0.1.0">14 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.0.0.1.1">14 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52562390.0.0.1.2.1.1">2</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-10" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52560513" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6A32/production/_112168172_tomcruise.jpg" alt="tom-cruise-in-a-rocket." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.0">Tom Cruise is filming a movie in space!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T14:31:38+00:00" data-datetime="16 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0.0.1.0">16 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.0.0.1.1">16 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52560513.0.0.1.2.1.1">3</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-11" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52502963" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1323C/production/_112069387_p08bzp1s.jpg" alt="Hands-holding-soil-plus-sprout." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.0.1.1">2:17</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.0">Great gardening tips for lockdown</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T08:03:38+00:00" data-datetime="22 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0.0.1.0">22 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52502963.0.0.1.2.0.0.1.1">22 hours ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-12" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52551934" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/F2F3/production/_112159126_tom_moore_pa.jpg" alt="Captain Tom Moore" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.0">Captain Tom Moore gets gold Blue Peter badge!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T05:55:17+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52551934.0.0.1.2.1.1">22</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-13" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51376710" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/CE6F/production/_111874825_p08b2cyq.jpg" alt="Your planet logo" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.0.1.1">1:25</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.0">Your Planet: The week's big environment stories</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T10:50:56+00:00" data-datetime="20 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0.0.1.0">20 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$51376710.0.0.1.2.0.0.1.1">20 hours ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-14" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52546937" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/0677/production/_112155610_gettyimages-1136837947.jpg" alt="mum-and-daughter-exercising." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.0">Have you been moving less during lockdown?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T05:19:13+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52546937.0.0.1.2.1.1">23</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-15" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52550365" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/158DD/production/_112158288_!!penguinchickshatchatchesterzoo...andkeepersarenamingthemafternhshospitalsintributetoour2.jpg" alt="Humboldt penguin" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.0">Meet the baby penguins named after NHS heroes</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T05:34:32+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550365.0.0.1.2.1.1">9</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-16" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52548734" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1DFB/production/_112157670_taika_reuters.jpg" alt="Taika-Waititi" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.0">Star Wars: What do we know about the next film?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T05:19:03+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52548734.0.0.1.2.1.1">9</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-17" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52556245" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14CF4/production/_112163258_2fe47748-4add-4a13-bc0b-4d32a74d0b75.jpg" alt="School-child-in-China." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.0">Pupils return to school in China</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T08:47:41+00:00" data-datetime="22 hours ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0.0.1.0">22 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.0.0.1.1">22 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52556245.0.0.1.2.1.1">9</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-18" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52537443" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4C2D/production/_112110591_p08c03dy.jpg" alt="Fake news generators" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.0.1.1">2:45</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.0">Who starts fake news about coronavirus - and why?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T12:25:03+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52537443.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-19" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52550642" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/D107/production/_108611535_classroom.jpg" alt="Classroom-teacher" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.0">Teachers warn of going back to school too early</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T05:34:55+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52550642.0.0.1.2.1.1">10</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-20" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52545218" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/169C7/production/_112151629_gettyimages-1142576725.jpg" alt="cherry-tree" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.0">QUIZ: Can you name the tree?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T10:32:52+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545218.0.0.1.2.1.1">30</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-21" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52545226" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/13727/production/_112155697_jamieindex.jpg" alt="jamie-johnson" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.0">We want YOUR questions for the Jamie Johnson cast</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T14:18:51+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52545226.0.0.1.2.1.1">48</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-22" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51047406" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/BD56/production/_112107484_flowers-and-moon.jpg" alt="Full-moon-behind-flowers" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.0">Are you ready to see the super flower moon?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T05:41:29+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$51047406.0.0.1.2.1.1">17</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-23" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52462814" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/152B1/production/_112050768_gettyimages-1217752899.jpg" alt="Food-box-of-essentials." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.0">Number of children using food banks more than doubles</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T08:13:27+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52462814.0.0.1.2.1.1">13</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-24" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52542426" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/93AD/production/_112150873_gettyimages-601066696.jpg" alt="white-tailed eagle" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.0">Rare white-tailed eagles return to England's skies</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T08:30:05+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52542426.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-25" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52541553" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/10B99/production/_112150586_gettyimages-1211598501.jpg" alt="social-distancing." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.0">What is the NHS coronavirus contact-tracing app?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T06:57:59+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541553.0.0.1.2.1.1">11</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-26" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52541560" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A677/production/_112151624_gettyimages-937210306.jpg" alt="koalas." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.0">How does a koala drink enough water?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T09:04:45+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52541560.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-27" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51698180" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/179ED/production/_111094769_p0859hzb.jpg" alt="how to wash your hands." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.0.1.1">0:43</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.0">World Hand Hygiene Day: How to wash your hands</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T08:15:53+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$51698180.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-28" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52529081" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1736F/production/_109578059_gettyimages-1134061972.jpg" alt="meteor showers are like pretty light shows in the sky" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.0">A mega meteor shower is coming this week</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T15:35:12+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529081.0.0.1.2.1.1">13</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-29" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52534775" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/9EB1/production/_112152604_operationouch1.jpg" alt="dr-xand-operation-ouch." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.0">Special Operation Ouch answers YOUR coronavirus questions</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T11:38:10+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52534775.0.0.1.2.1.1">22</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-30" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52487193" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1C10/production/_112048170_gettyimages-1076473108.jpg" alt="girl taking pet photos" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.0.1.1">1:19</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.0">How to take amazing pics of your pet</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T05:42:06+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52487193.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-31" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52528725" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/11634/production/_112102217_blackpink.jpg" alt="blackpink." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.0">New BLACKPINK songs out in June</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T12:43:56+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52528725.0.0.1.2.1.1">30</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52447570" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/8AB7/production/_112011553_gettyimages-1048322846.jpg" alt="Kids on a bouncy castle." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.0">Year 6s and P7s: What leavers' events do you have planned?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T05:09:47+00:00" data-datetime="3 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52447570.0.0.1.2.1.1">69</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-33" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52529078" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1000E/production/_112105556_gettyimages-1162543444.jpg" alt="Marcus Rashford." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.0">Fancy a PE lesson with Mr. Rashford?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T12:23:56+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52529078.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-34" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52526849" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1695E/production/_112101529_ba124171-7664-4516-975f-39a51133f85b.jpg" alt="dragon-capsule." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.0">Nasa and SpaceX team up for US blast off</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T11:55:21+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52526849.0.0.1.2.1.1">1</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-35" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52530878" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/C058/production/_112104294_wolf_getty.jpg" alt="Wolf" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.0">First wild baby wolves for Belgium in 150 years</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T12:43:11+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52530878.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-36" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52527526" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/ED26/production/_112101706_untitled.jpg" alt="Which Star Wars character are you?" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.0">Quiz: Which Star Wars character are you?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T07:58:30+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527526.0.0.1.2.1.1">42</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-37" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/48191799" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/125BD/production/_112079157_hedgehogawarenessweek1.jpg" alt="Hedgehog" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.0">How YOU can help our spiky friends for Hedgehog Awareness Week</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T06:06:40+00:00" data-datetime="3 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$48191799.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-38" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52532343" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/F334/production/_112106226_gettyimages-1211629921.jpg" alt="Two boys with masks on a bike on the promenade of Corigliano-Rossano, along the Ionian sea in Calabria, southern Italy." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.0.1.1">1:32</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.0">Italians play outdoors after seven weeks in lockdown</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T14:53:39+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52532343.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-39" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52527127" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7BDE/production/_112101713_coinzz.jpg" alt="VE coins" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.0">Special coins to remember VE Day</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T10:58:38+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52527127.0.0.1.2.1.1">3</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-40" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/50434875" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14C12/production/_112101058_happymay4th.jpg" alt="tortoise" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.0.1.1">0:53</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.0">Happy News</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T05:33:42+00:00" data-datetime="3 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$50434875.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-41" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52508543" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/3E0F/production/_112078851_p08c0m24.jpg" alt="teacher-with-kids-laughing-at-computer-screen." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.0.1.1">1:12</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.0">We think these teachers are missing their pupils!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T07:11:55+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52508543.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-42" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52354888" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/084C/production/_112042120_befunky-collage.jpg" alt="food" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.0">Tasty recipes you can try making at home!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-03T08:54:38+00:00" data-datetime="3 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52354888.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-43" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/43245617" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/011A/production/_112028200_p08bsxbh.jpg" alt="Hologram of a zebra" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.0.1.1">0:58</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.0">Strange News</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-01T05:32:57+00:00" data-datetime="6 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0.0.1.0">6 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$43245617.0.0.1.2.0.0.1.1">6 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-44" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51318780" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/10166/production/_112049856_background-1.jpg" alt="Quiz of the week" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.0">Quiz: Have you been following this week's news?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-01T05:33:28+00:00" data-datetime="6 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0.0.1.0">6 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$51318780.0.0.1.2.0.0.1.1">6 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-45" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52485316" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4CAF/production/_112013691_yourrainbows.jpg" alt="KIDS-WITH-RAINBOWS." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.0">YOUR amazing rainbow pics</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-30T13:50:47+00:00" data-datetime="6 days ago" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0.0.1.0">6 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.0.0.1.1">6 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52485316.0.0.1.2.1.1">9</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-46" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52457520" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4363/production/_112015271_mediaitem112015270.jpg" alt="Spider-Man" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.0">Take on our super Marvel quiz!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-29T05:29:36+00:00" data-datetime="29 Apr 2020" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0.0.1.0">29 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.0.0.1.1">29 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.5.0.1.$52457520.0.0.1.2.1.1">38</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-47" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/23286976" class="newsround-promo__content newsround-promo__content--white" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1BD9/production/_89892170_gettyimages-150481963.jpg" alt="Young Muslim girls show their hands decorated with henna after attending prayers on Eid Al-Fitr" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.0">What's it like fasting during Ramadan?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-23T05:32:40+00:00" data-datetime="23 Apr 2020" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0.0.1.0">23 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.5.0.1.$23286976.0.0.1.2.0.0.1.1">23 April 2020</span></time></span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--additional-top-stories" data-reactid=".1fz6v9zaxog.1.5.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".1fz6v9zaxog.1.5.1.0.0.0.0"><button class="newsround-button newsround-button--purple" tabindex="-1" aria-label="Show more stories" data-reactid=".1fz6v9zaxog.1.5.1.0.0.0.0.0"><span data-reactid=".1fz6v9zaxog.1.5.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section><div data-reactid=".1fz6v9zaxog.1.6"></div><section class="newsround-bulletin" data-istats-track-scroll-visibility="nr_home_bulletin_promo" data-bbc-container="home-watch-newsround" data-bbc-metadata="{"PAR":"home-watch-newsround","CHD":"promo"}" data-bbc-source="newsround" data-bbc-title="Watch Newsround " data-reactid=".1fz6v9zaxog.1.7"><div class="newsround-bulletin__mobile-background" style="background:linear-gradient(transparent 50%, #011638 95%),url(https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/750/cpsprodpb/EB74/production/_112167206_p08cghd9.jpg);background-repeat:no-repeat;background-size:100%;background-position:center;" data-reactid=".1fz6v9zaxog.1.7.0"></div><div class="newsround-bulletin__wrapper" data-istats-track="true" data-istats-track-link-location="nr_home_bulletin_promo" data-reactid=".1fz6v9zaxog.1.7.1"><div class="newsround-bulletin__layout" data-reactid=".1fz6v9zaxog.1.7.1.0"><div class="newsround-bulletin__text-container" data-reactid=".1fz6v9zaxog.1.7.1.0.0"><div class="newsround-bulletin__text-wrapper" data-reactid=".1fz6v9zaxog.1.7.1.0.0.0"><h2 class="newsround-bulletin__title" data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.0">Watch Newsround </h2><h3 class="newsround-bulletin__subtitle" data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.1">How zoos are managing with lockdown, you tell us if you've gone 'lockdown lazy,' Captain Tom gets another award and it's happy birthday Archie!</h3><div class="newsround-bulletin__button-wrapper" data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.2"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/news/watch_newsround" class="newsround-button newsround-button--teal" aria-label="Watch Newsround" data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.2.0"><div class="gel-icon gel-icon--play newsround-button__icon" data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.2.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.2.0.0.0"><title data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.2.0.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.2.0.0.0.1"></path></svg></div><span data-reactid=".1fz6v9zaxog.1.7.1.0.0.0.2.0.1">Watch Now</span></a></div></div></div><div class="newsround-bulletin__image-container" data-reactid=".1fz6v9zaxog.1.7.1.0.1"><div class="newsround-bulletin__image-background" style="background:linear-gradient(to right, #011638 5%, transparent 30%),linear-gradient(to left, #011638 5%, transparent 30%),url(https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/750/cpsprodpb/EB74/production/_112167206_p08cghd9.jpg);background-repeat:no-repeat;background-size:100%;background-position:center;" data-reactid=".1fz6v9zaxog.1.7.1.0.1.0"></div><div class="newsround-bulletin__image-wrapper" data-reactid=".1fz6v9zaxog.1.7.1.0.1.1"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/750/cpsprodpb/EB74/production/_112167206_p08cghd9.jpg" alt="hayley_newsround" class="newsround-bulletin__image" data-reactid=".1fz6v9zaxog.1.7.1.0.1.1.0"/><div class="newsround-bulletin__image-decoration" data-reactid=".1fz6v9zaxog.1.7.1.0.1.1.1"></div></div></div></div></div><div class="newsround-bulletin__bottom-gradient" data-reactid=".1fz6v9zaxog.1.7.2"></div></section><section id="more-stories-2" class="newsround-more-stories newsround-more-stories--more-stories-2" data-istats-track-scroll-visibility="nr_home_more_stories_2" data-reactid=".1fz6v9zaxog.1.9"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".1fz6v9zaxog.1.9.0"><div class="newsround-more-stories__header" data-reactid=".1fz6v9zaxog.1.9.0.0"><div class="newsround-more-stories__header-item" data-reactid=".1fz6v9zaxog.1.9.0.0.0"><h2 class="newsround-more-stories__header-title newsround-more-stories__header-title--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.0.0.0">Coronavirus</h2></div></div><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".1fz6v9zaxog.1.9.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-1" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51204456" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/8E76/production/_112107463_thumbnail.jpg" alt="NHS in a rainbow heart" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.0">Coronavirus: What is being done to tackle the virus?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T08:18:04+00:00" data-datetime="22 hours ago" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0.0.1.0">22 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.0.0.1.1">22 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$51204456.0.0.1.2.1.1">365</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52534777" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1818D/production/_112110789_p08c7fgw.jpg" alt="dr-ronx." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.0.1.1">1:05</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.0">Top tips of what to do in lockdown from Operation Ouch!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T06:14:34+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52534777.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-3" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51877454" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12FCB/production/_111717777_3_nrcor_tom7.jpg" alt="coronavirus" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.0">Frequently asked questions about coronavirus</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T13:36:28+00:00" data-datetime="8 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$51877454.0.0.1.2.1.1">42</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-4" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51312911" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/494F/production/_111976781_mediaitem111976780.jpg" alt="A small bottle labeled with a "Vaccine" sticker is held near a medical syringe" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.0">Coronavirus: How do vaccines work?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T06:40:41+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$51312911.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-5" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52393241" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/0033/production/_111915000_gettyimages-911029638.jpg" alt="girls at school" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.0">What do we know about when schools will re-open?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T08:07:57+00:00" data-datetime="22 hours ago" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0.0.1.0">22 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52393241.0.0.1.2.0.0.1.1">22 hours ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-6" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52467760" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/13101/production/_112018087_gettyimages-170474250.jpg" alt="masks-france." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.0">What are different countries doing about wearing masks at school?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T08:28:18+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$52467760.0.0.1.2.1.1">19</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-7" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51887051" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/E75E/production/_111703295_p0890dfw.jpg" alt="Keyframe #6" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.0.1.1">2:00</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.0">Advice if you're worried about the coronavirus</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T14:59:42+00:00" data-datetime="8 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$51887051.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-8" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52538074" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/B735/production/_112110964_p08c7fxt.jpg" alt="dr-xand." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.0.1.1">1:57</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.0">Watch Dr Xand鈥檚 coronavirus video diary</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T06:48:01+00:00" data-datetime="2 days ago" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52538074.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52227592" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/10E3D/production/_111718196_p0892v48.jpg" alt="Child-in-kitchen." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.0.1.1">1:04</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.0">100 activity ideas you can do indoors during lockdown</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-12T10:44:19+00:00" data-datetime="12 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0.0.1.0">12 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52227592.0.0.1.2.0.0.1.1">12 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-10" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52200989" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/168D9/production/_111877329_coronavirusmasks.jpg" alt="coronavirus-masks." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.0">Coronavirus: What's the latest advice about masks?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T15:07:41+00:00" data-datetime="1 day ago" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$52200989.0.0.1.2.1.1">56</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-11" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52300064" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/5782/production/_111820422_nrkeykids1.jpg" alt="key-worker-graphic" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.0.1.1">1:43</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.0">Coronavirus: The key workers' children still at school</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-22T05:43:08+00:00" data-datetime="22 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0.0.1.0">22 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52300064.0.0.1.2.0.0.1.1">22 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-12" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52351553" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/2BC7/production/_111870211_supersix.jpg" alt="Composite-of-6-dogs." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.0">Could dogs be used to test people for coronavirus?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-22T07:40:43+00:00" data-datetime="22 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0.0.1.0">22 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.0.0.1.1">22 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$52351553.0.0.1.2.1.1">8</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-13" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52280887" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/22CC/production/_111780980_gettyimages-1208003898.jpg" alt="mask-gloves-hospital." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.0">What is PPE & why is it in the news?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-18T09:15:53+00:00" data-datetime="18 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0.0.1.0">18 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.0.0.1.1">18 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$52280887.0.0.1.2.1.1">11</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-14" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52292291" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/155DF/production/_111791578_trumpgetty.jpg" alt="Donald Trump" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.0">Who is WHO? What does the World Health Organization do?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-15T11:52:25+00:00" data-datetime="15 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0.0.1.0">15 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52292291.0.0.1.2.0.0.1.1">15 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-15" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52357183" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/158FD/production/_111871388_p08b29ym.jpg" alt="dr ranj" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.0.1.1">3:15</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.0">Dr Ranj answers kids' questions about coronavirus</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-21T10:28:41+00:00" data-datetime="21 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0.0.1.0">21 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52357183.0.0.1.2.0.0.1.1">21 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-16" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52314760" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/2079/production/_111831380_p089r79z.jpg" alt="paul-and-freddy." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.0.1.1">1:14</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.0">Paul & Freddy's mental health top tips</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-17T08:44:00+00:00" data-datetime="17 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0.0.1.0">17 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52314760.0.0.1.2.0.0.1.1">17 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-17" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52216267" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/D20B/production/_111717735_gettyimages-1031664628.jpg" alt="open window" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.0">How to enjoy the outdoors...when you're stuck inside!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T17:24:08+00:00" data-datetime="8 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$52216267.0.0.1.2.1.1">6</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-18" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52254282" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/D5F7/production/_111757745_gettyimages-1213912191.jpg" alt="girl-celebrating-birthday-with-friends-via-video-chat" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.0">Tips for celebrating your birthday during lockdown</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-15T07:48:02+00:00" data-datetime="15 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0.0.1.0">15 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.0.0.1.1">15 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$52254282.0.0.1.2.1.1">20</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-19" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52214311" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/990D/production/_111718193_p0892rv3.jpg" alt="Keyframe #1" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.0.1.1">1:48</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.0">Worship during the Coronavirus</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-14T06:07:49+00:00" data-datetime="14 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0.0.1.0">14 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52214311.0.0.1.2.0.0.1.1">14 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-20" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52096366" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/ADD9/production/_111550544_gettyimages-1195910993.jpg" alt="hand-holding-a-phone-with-fake-news-on-the-screen-other-hand-about-to-press-share-on-the-screen" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.0.1.1">2:00</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.0">How to spot fake virus news</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-03T08:03:29+00:00" data-datetime="3 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0.0.1.0">3 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52096366.0.0.1.2.0.0.1.1">3 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-21" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52156671" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A64A/production/_111607524_gettyimages-619269222.jpg" alt="child-on-phone." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.0">Worried about coronavirus? The BBC Own It app can help</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-03T14:46:21+00:00" data-datetime="3 Apr 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0.0.1.0">3 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52156671.0.0.1.2.0.0.1.1">3 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-22" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52018134" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/117D8/production/_111404617_title_-still_00078.png" alt="title-card" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.0">How to BOSS being stuck at home!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-25T06:28:57+00:00" data-datetime="25 Mar 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0.0.1.0">25 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.0.0.1.1">25 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$52018134.0.0.1.2.1.1">44</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-23" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51989370" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/108EA/production/_111381876_p0878y4y.jpg" alt="Domino" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.0.1.1">1:08</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.0">Social distancing explained - with dominoes</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-29T13:38:07+00:00" data-datetime="29 Mar 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0.0.1.0">29 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$51989370.0.0.1.2.0.0.1.1">29 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-24" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51959552" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1812D/production/_111350689_p0871sr2.jpg" alt="DR James and his dog Oliver" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.0.1.1">2:43</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.0">Advice on looking after pets during Coronavirus</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-23T11:34:02+00:00" data-datetime="23 Mar 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0.0.1.0">23 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$51959552.0.0.1.2.0.0.1.1">23 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-25" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51626137" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/9D50/production/_111027204_gettyimages-1202707966.jpg" alt="people-wearing-masks." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.0">Coronavirus is a 'pandemic'. But what does that mean?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-11T16:52:29+00:00" data-datetime="11 Mar 2020" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0.0.1.0">11 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.0.0.1.1">11 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.9.0.1.$51626137.0.0.1.2.1.1">5</span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--more-stories-2" data-reactid=".1fz6v9zaxog.1.9.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".1fz6v9zaxog.1.9.1.0.0.0.0"><button class="newsround-button newsround-button--charcoal-purple" tabindex="-1" aria-label="Show more stories" data-reactid=".1fz6v9zaxog.1.9.1.0.0.0.0.0"><span data-reactid=".1fz6v9zaxog.1.9.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section><section id="more-stories-3" class="newsround-more-stories newsround-more-stories--more-stories-3" data-istats-track-scroll-visibility="nr_home_more_stories_3" data-reactid=".1fz6v9zaxog.1.a"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".1fz6v9zaxog.1.a.0"><div class="newsround-more-stories__header" data-reactid=".1fz6v9zaxog.1.a.0.0"><div class="newsround-more-stories__header-item" data-reactid=".1fz6v9zaxog.1.a.0.0.0"><h2 class="newsround-more-stories__header-title newsround-more-stories__header-title--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.0.0.0">Climate change</h2></div></div><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".1fz6v9zaxog.1.a.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-1" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51644659" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1CFE/production/_111122470_laverne_antrobus.jpg" alt="Laverne antrobus tips" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.0.1.1">0:56</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.0">Five tips if you're feeling worried about climate change</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-03T06:41:35+00:00" data-datetime="3 Mar 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0.0.1.0">3 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51644659.0.0.1.2.0.0.1.1">3 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-2" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52410744" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/EE95/production/_111977016_titlepage_still_00513.jpg" alt="Koala-and-firefighter-title-page." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.0">Australia: Life after the bushfires</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-28T05:30:00+00:00" data-datetime="28 Apr 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0.0.1.0">28 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.0.0.1.1">28 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$52410744.0.0.1.2.1.1">22</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51388287" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/93B9/production/_111371873_gettyimages-1097731282.jpg" alt="climate-change-renewable-energy-graphic." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.0">Five epic inventions fighting climate change</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-22T05:45:16+00:00" data-datetime="22 Apr 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0.0.1.0">22 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.0.0.1.1">22 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$51388287.0.0.1.2.1.1">5</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-4" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52132683" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/167A7/production/_111517029_gettyimages-506014770.jpg" alt="Whale" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.0">Hope for ocean recovery by 2050</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-02T09:15:16+00:00" data-datetime="2 Apr 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0.0.1.0">2 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.0.0.1.1">2 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$52132683.0.0.1.2.1.1">8</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-5" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52160277" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/AC9F/production/_111719144_p0892mcd.jpg" alt="Energy sparks." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.0.1.1">2:09</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.0">The schools fighting to save energy</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-15T07:54:48+00:00" data-datetime="15 Apr 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0.0.1.0">15 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$52160277.0.0.1.2.0.0.1.1">15 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-6" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51678449" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/085C/production/_111104120_gettyimages-165611479.jpg" alt="hand" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.0">How worried are YOU about the environment? Try Newsround's survey</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-03T06:16:18+00:00" data-datetime="3 Mar 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0.0.1.0">3 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.0.0.1.1">3 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678449.0.0.1.2.1.1">27</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-7" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51451737" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1641F/production/_111076119_nranxiety_00111.jpg" alt="girl stressed by the environment" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.0">Is climate change giving you nightmares?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-03T06:12:05+00:00" data-datetime="3 Mar 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0.0.1.0">3 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.0.0.1.1">3 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$51451737.0.0.1.2.1.1">35</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-8" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51634984" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/88CA/production/_111081053_football.jpg" alt="Football with green paint streak" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.0.1.1">2:02</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.0">'Football isn't doing enough for the environment'</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-28T06:27:53+00:00" data-datetime="28 Feb 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0.0.1.0">28 Feb 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51634984.0.0.1.2.0.0.1.1">28 February 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51678157" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/162A3/production/_111078709_3cd7855c-c896-46e7-8e38-351940cf96f0.jpg" alt="Greta-Thunberg-in-Bristol" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.1"><div class="gel-icon gel-icon--image newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.1.0.0.0">image</title><path d="M9 5V3H4v2H0v24h32V5zm-2.5 8A2.5 2.5 0 1 1 9 10.5 2.5 2.5 0 0 1 6.5 13zM20 26a9 9 0 1 1 9-9 9 9 0 0 1-9 9z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.1.0.0.1"></path><circle cx="20" cy="17" r="5.5" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.1.0.0.2"></circle></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.0.1.1"></span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.0">Greta's Bristol climate protest in pictures</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-29T07:23:53+00:00" data-datetime="29 Feb 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0.0.1.0">29 Feb 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51678157.0.0.1.2.0.0.1.1">29 February 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-10" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51358462" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/15849/production/_110773188_gretathunberg3.jpg" alt="Greta-Thunberg." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.0">'Greta effect' sees young people making voices heard online</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-04T07:05:30+00:00" data-datetime="4 Feb 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0.0.1.0">4 Feb 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.0.0.1.1">4 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$51358462.0.0.1.2.1.1">2</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-11" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51218555" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/11B0D/production/_110616427_willow-being-grown-for-bio-fuel.jpg" alt="willow-being-grown-for-bio-fuel." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.0">Experts suggest FIVE ways the UK can fight climate change</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-01-24T06:25:30+00:00" data-datetime="24 Jan 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0.0.1.0">24 Jan 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.0.0.1.1">24 January 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$51218555.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-12" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51049866" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/C48B/production/_110451305_gettyimages-1132130918.jpg" alt="flooding-in-mozambique." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.0">Five big climate issues affecting Africa</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-01-10T07:38:11+00:00" data-datetime="10 Jan 2020" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0.0.1.0">10 Jan 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.0.0.1.1">10 January 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$51049866.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-13" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/50650795" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/E023/production/_109997375_gettyimages-1186266775-1.jpg" alt="greta" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--purple newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.0.1.1">2:41</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.0">Greta: 'People are underestimating the force of angry kids!'</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-12-04T06:25:52+00:00" data-datetime="4 Dec 2019" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0.0.1.0">4 Dec 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$50650795.0.0.1.2.0.0.1.1">4 December 2019</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-14" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/50328797" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1E1A/production/_109560770_gettyimages-1130736511.jpg" alt="two-girls." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.0">'Climate strike' is the Word of the Year</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-11-07T09:05:30+00:00" data-datetime="7 Nov 2019" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0.0.1.0">7 Nov 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.0.0.1.1">7 November 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$50328797.0.0.1.2.1.1">6</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-15" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/49793156" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/17EBC/production/_108908979_aaauntitled.jpg" alt="eco-superhero" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.0">Climate Change Quiz: How green are you?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-09-23T05:52:02+00:00" data-datetime="23 Sep 2019" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0.0.1.0">23 Sep 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.0.0.1.1">23 September 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.a.0.1.$49793156.0.0.1.2.1.1">25</span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--more-stories-3" data-reactid=".1fz6v9zaxog.1.a.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".1fz6v9zaxog.1.a.1.0.0.0.0"><button class="newsround-button newsround-button--purple" tabindex="-1" aria-label="Show more stories" data-reactid=".1fz6v9zaxog.1.a.1.0.0.0.0.0"><span data-reactid=".1fz6v9zaxog.1.a.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section><section id="more-stories-4" class="newsround-more-stories newsround-more-stories--more-stories-4" data-istats-track-scroll-visibility="nr_home_more_stories_4" data-reactid=".1fz6v9zaxog.1.b"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".1fz6v9zaxog.1.b.0"><div class="newsround-more-stories__header" data-reactid=".1fz6v9zaxog.1.b.0.0"><div class="newsround-more-stories__header-item" data-reactid=".1fz6v9zaxog.1.b.0.0.0"><h2 class="newsround-more-stories__header-title newsround-more-stories__header-title--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.0.0.0">Gaming</h2></div></div><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".1fz6v9zaxog.1.b.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-1" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52456575" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/934F/production/_112011773_mining.jpg" alt="data-mining." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.0">How coding detectives dig out gaming secrets</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-29T05:37:48+00:00" data-datetime="29 Apr 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0.0.1.0">29 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.0.0.1.1">29 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$52456575.0.0.1.2.1.1">21</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-2" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52230222" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/3CB6/production/_111724551_fifa20.jpg" alt="Jadon-Sancho-FIFA20." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.0">Gaming top tips: Fifa 20</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-14T13:01:54+00:00" data-datetime="14 Apr 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0.0.1.0">14 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.0.0.1.1">14 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$52230222.0.0.1.2.1.1">2</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-3" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52136993" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14156/production/_111526228_season22motage.jpg" alt="fortnite-chapter-2-season-2." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.0">Gaming top tips: Fortnite</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T12:52:18+00:00" data-datetime="8 Apr 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$52136993.0.0.1.2.1.1">55</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52105524" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4DA7/production/_111497891_mediaitem111497890.jpg" alt="animal-crossing." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.0">Gaming top tips: Animal Crossing</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T11:17:17+00:00" data-datetime="8 Apr 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$52105524.0.0.1.2.1.1">22</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-5" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/52118980" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7438/production/_111525792_minecraft_horizontal_key_art.jpg" alt="minecraft." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.0">Gaming top tips: Minecraft</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T11:26:34+00:00" data-datetime="8 Apr 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$52118980.0.0.1.2.1.1">41</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-6" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51962151" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/54DE/production/_111362712_mediaitem111362711.jpg" alt="animal-crossing-tent." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.0">Animal Crossing New Horizons is out! Here's all you need to know</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-20T06:48:08+00:00" data-datetime="20 Mar 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0.0.1.0">20 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.0.0.1.1">20 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$51962151.0.0.1.2.1.1">3</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-7" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51514293" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/8D41/production/_110916163_llama.jpg" alt="Fortnite supply llama" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.0">Fortnite creator wants an end to loot boxes</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-15T10:11:22+00:00" data-datetime="15 Feb 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0.0.1.0">15 Feb 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$51514293.0.0.1.2.0.0.1.1">15 February 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-8" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51415843" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/131DD/production/_110810387_netherite.jpg" alt="netherite-block-minecraft." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.0">Minecraft: Is Netherite better than diamonds?!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-09T08:02:12+00:00" data-datetime="9 Feb 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0.0.1.0">9 Feb 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.0.0.1.1">9 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$51415843.0.0.1.2.1.1">49</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-9" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51368413" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7A41/production/_104279213_garethbale.jpg" alt="Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.0">Gareth Bale has launched an e-sports team</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-04T17:49:53+00:00" data-datetime="4 Feb 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0.0.1.0">4 Feb 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.0.0.1.1">4 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$51368413.0.0.1.2.1.1">1</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-10" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51266122" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/13E34/production/_110706418_b1e649d2-0c17-4265-9351-26a41a7f5264.jpg" alt="the-sims-game-characters." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.0">The Sims turns 20!</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-09T08:11:56+00:00" data-datetime="9 Feb 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0.0.1.0">9 Feb 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.0.0.1.1">9 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$51266122.0.0.1.2.1.1">9</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-11" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51132013" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/8400/production/_110529733_5ec08753-2ca7-49b9-be4b-a4b236c412e2.jpg" alt="Ninja-skin-as-shown-on-Fortnite" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.0">Ninja is getting his own Fortnite skin</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-01-16T09:33:44+00:00" data-datetime="16 Jan 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0.0.1.0">16 Jan 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.0.0.1.1">16 January 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$51132013.0.0.1.2.1.1">17</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-12" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51012498" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/CF1D/production/_110412035_tombraider.jpg" alt="Tomb Raider" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.1"><div class="gel-icon gel-icon--image newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.1.0.0.0">image</title><path d="M9 5V3H4v2H0v24h32V5zm-2.5 8A2.5 2.5 0 1 1 9 10.5 2.5 2.5 0 0 1 6.5 13zM20 26a9 9 0 1 1 9-9 9 9 0 0 1-9 9z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.1.0.0.1"></path><circle cx="20" cy="17" r="5.5" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.1.0.0.2"></circle></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.0.1.1"></span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.0">The classic video games celebrated in stamps</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-01-07T06:24:32+00:00" data-datetime="7 Jan 2020" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0.0.1.0">7 Jan 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$51012498.0.0.1.2.0.0.1.1">7 January 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-13" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/50519638" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/BEA9/production/_109790884__107830468_ceea986d-b00c-4618-9417-6195b94a8463.jpg" alt="Grookey scorbunny and sobble" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.0">How Pok茅mon Sword and Shield became fastest-selling games</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-11-22T14:52:32+00:00" data-datetime="22 Nov 2019" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0.0.1.0">22 Nov 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.0.0.1.1">22 November 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$50519638.0.0.1.2.1.1">6</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-14" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/50472479" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A784/production/_109748824_gettyimages-1163037373.jpg" alt="google-stadia." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.0">Google Stadia - is it any good?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-11-20T12:25:38+00:00" data-datetime="20 Nov 2019" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0.0.1.0">20 Nov 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.0.0.1.1">20 November 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$50472479.0.0.1.2.1.1">9</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-15" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/50435120" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1622C/production/_109686609_sonic1.jpg" alt="sonic-the-hedgehog." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.0">Video game characters inspired by animals</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-11-18T06:31:20+00:00" data-datetime="18 Nov 2019" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0.0.1.0">18 Nov 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.0.0.1.1">18 November 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.b.0.1.$50435120.0.0.1.2.1.1">10</span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--more-stories-4" data-reactid=".1fz6v9zaxog.1.b.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".1fz6v9zaxog.1.b.1.0.0.0.0"><button class="newsround-button newsround-button--pink" tabindex="-1" aria-label="Show more stories" data-reactid=".1fz6v9zaxog.1.b.1.0.0.0.0.0"><span data-reactid=".1fz6v9zaxog.1.b.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section><section id="more-stories-5" class="newsround-more-stories newsround-more-stories--more-stories-5" data-istats-track-scroll-visibility="nr_home_more_stories_5" data-reactid=".1fz6v9zaxog.1.c"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".1fz6v9zaxog.1.c.0"><div class="newsround-more-stories__header" data-reactid=".1fz6v9zaxog.1.c.0.0"><div class="newsround-more-stories__header-item" data-reactid=".1fz6v9zaxog.1.c.0.0.0"><h2 class="newsround-more-stories__header-title newsround-more-stories__header-title--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.0.0.0">Newsround Learn</h2></div></div><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".1fz6v9zaxog.1.c.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-1" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51118364" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4453/production/_110519471_teacher1_getty.jpg" alt="Teacher and children in a school classroom" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.0">Welcome to Newsround Teachers</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-01-15T13:50:19+00:00" data-datetime="15 Jan 2020" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0.0.1.0">15 Jan 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$51118364.0.0.1.2.0.0.1.1">15 January 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-2" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51836693" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/70AA/production/_111224882_titlepage.png" alt="Big Stories and big words" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.0">Newsround Worksheet: Wednesday headlines and glossary</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-06T08:44:18+00:00" data-datetime="22 hours ago" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0.0.1.0">22 hours ago</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$51836693.0.0.1.2.0.0.1.1">22 hours ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-3" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51723696" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/11EF5/production/_111116437_p07m5qmk.jpg" alt="newsround" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.0">Newsround: Our big stories this week</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-15T15:08:55+00:00" data-datetime="15 Apr 2020" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0.0.1.0">15 Apr 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$51723696.0.0.1.2.0.0.1.1">15 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-4" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51826298" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/9BD3/production/_111219893_youngreporter2.jpg" alt="Young-reporter-pic" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.0.1.1">1:31</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.0">The girl campaigning for more diversity in books</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-11T06:52:05+00:00" data-datetime="11 Mar 2020" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0.0.1.0">11 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$51826298.0.0.1.2.0.0.1.1">11 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/51403096" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6180/production/_110806942_p082hykf.jpg" alt="inside-my-head-taking-control-of-my-anxiety-a-newsround-special" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.0.1.1">27:54</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.0">Inside My Head: Taking Control of My Anxiety</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-07T09:39:52+00:00" data-datetime="7 Feb 2020" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0.0.1.0">7 Feb 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$51403096.0.0.1.2.0.0.1.1">7 February 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-6" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/42810179" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/13DDA/production/_102207318_mediaitem102207317.jpg" alt="A single discarded plastic water bottle on a sandy beach" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.0">Guide: Why is plastic a problem?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-17T15:15:56+00:00" data-datetime="17 Mar 2020" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0.0.1.0">17 Mar 2020</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$42810179.0.0.1.2.0.0.1.1">17 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-7" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/44870690" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A313/production/_102574714_mediaitem102574713.jpg" alt="One of the largest Adelie penguin colonies in Antarctica situated in Hope Bay on Trinity Peninsula" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.0.1.1">2:23</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.0">What's it like to live in Antarctica?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2018-07-18T10:10:02+00:00" data-datetime="18 Jul 2018" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0.0.1.0">18 Jul 2018</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$44870690.0.0.1.2.0.0.1.1">18 July 2018</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-8" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/48352689" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/2037/production/_107074280_trumpindex.jpg" alt="trump-wall" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.0">Living with the wall: A Newsround special</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-06-04T06:04:16+00:00" data-datetime="4 Jun 2019" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0.0.1.0">4 Jun 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.0.0.1.1">4 June 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.1.0.0"><title data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".1fz6v9zaxog.1.c.0.1.$48352689.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-9" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/25036313" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7427/production/_92653792_anxiety.jpg" alt="Cartoon" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.0">What is anxiety?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-02-15T07:11:23+00:00" data-datetime="15 Feb 2019" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0.0.1.0">15 Feb 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$25036313.0.0.1.2.0.0.1.1">15 February 2019</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-10" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/49997791" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6273/production/_95330252_whatismentalhealth.jpg" alt="mental-health-problem-graphic." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.0.0.0"/></div><span data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.0">What is a mental health problem?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-10-10T10:23:16+00:00" data-datetime="10 Oct 2019" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0.0.1.0">10 Oct 2019</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$49997791.0.0.1.2.0.0.1.1">10 October 2019</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-11" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/44503109" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/617A/production/_103645942_windrush-index.jpg" alt="Maya in a blue top, Levi in a red top, both smiling at the camera." class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.0.1.1">27:19</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.0">Finding My Family - Windrush</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2018-06-18T05:48:33+00:00" data-datetime="18 Jun 2018" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0.0.1.0">18 Jun 2018</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$44503109.0.0.1.2.0.0.1.1">18 June 2018</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-12" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/40848395" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14931/production/_97237248_titleslateweb.jpg" alt="Finding My Family graphic" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.0.1.1">23:43</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.0">Finding My Family - Partition</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2017-08-08T10:11:06+00:00" data-datetime="8 Aug 2017" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0.0.1.0">8 Aug 2017</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$40848395.0.0.1.2.0.0.1.1">8 August 2017</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-13" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/36247103" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/9028/production/_89640963_nr_rhino_promo_image.jpg" alt="Defending the Rhino image" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.0.1.1">16:13</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.0">Defending the Rhino</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2016-05-11T12:08:37+00:00" data-datetime="11 May 2016" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0.0.1.0">11 May 2016</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$36247103.0.0.1.2.0.0.1.1">11 May 2016</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-14" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0"><a href="/web/20200507070616/https://www.bbc.co.uk/newsround/35707765" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0"><div class="newsround-promo__media" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0.0"><img src="https://web.archive.org/web/20200507070616im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/15771/production/_88912978_88565600.jpg" alt="Is Tech Taking Over?" class="newsround-promo__responsive-image" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0.1.0.0"><title data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.0.1.1">15:54</span></span></div><div class="newsround-promo__main" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1"><p class="newsround-promo__headline" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.0">Is Tech Taking Over?</p><div class="newsround-promo__footer" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2016-03-21T16:41:45+00:00" data-datetime="21 Mar 2016" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0.0.1.0">21 Mar 2016</span><span class="gs-u-vh" data-reactid=".1fz6v9zaxog.1.c.0.1.$35707765.0.0.1.2.0.0.1.1">21 March 2016</span></time></span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--more-stories-5" data-reactid=".1fz6v9zaxog.1.c.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".1fz6v9zaxog.1.c.1.0.0.0.0"><button class="newsround-button newsround-button--teal" tabindex="-1" aria-label="Show more stories" data-reactid=".1fz6v9zaxog.1.c.1.0.0.0.0.0"><span data-reactid=".1fz6v9zaxog.1.c.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section></section></div></div> </div> <div id="orb-footer" class="orb-footer" dir="ltr"><div id="navp-orb-footer-promo"></div><aside role="complementary"><div id="orb-aside" class="orb-nav-sec b-r b-g-p"><div class="orb-footer-inner" role="navigation" aria-label="BBC"><h2 class="orb-footer-lead">Explore the BBC</h2><div class="orb-footer-primary-links"><ul><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-iplayer orb-d"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/tv/cbbc">CBBC iPlayer</a></li><li class="orb-nav-newsround"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/newsround">Newsround</a></li><li class="orb-nav-bitesize orb-d"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-ownit orb-d"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.com/ownit">Own It</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-cbbctv"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/iplayer/guide/cbbc">CBBC on TV</a></li><li class="orb-nav-cbbchelp orb-d"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/cbbc/curations/cbbc-help">CBBC Help</a></li></ul></div></div></div></aside><footer role="contentinfo"><div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"><script>window.orb.worldwideFooterlinks = '<li class="orb-footer-ads"><a href="https://web.archive.org/web/20200507070616/https://advertising.bbcworldwide.com/">Advertise with us<'+'/a><'+'/li><li class="orb-footer-adchoices"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.com/usingthebbc/cookies/how-can-i-change-my-bbc-cookie-settings/">AdChoices / Do Not Sell My Info<'+'/a><'+'/li>';</script><div class="orb-footer-inner"> <ul><li class="orb-footer-terms"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/usingthebbc/terms/">Terms of Use</a></li><li class="orb-footer-about"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/aboutthebbc">About the BBC</a></li><li class="orb-footer-privacy"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/usingthebbc/privacy/">Privacy Policy</a></li><li class="orb-footer-cookies"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/usingthebbc/cookies/">Cookies</a></li><li class="orb-footer-accessibility"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li class="orb-footer-parental"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/guidance">Parental Guidance</a></li><li class="orb-footer-contact"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/contact">Contact the BBC</a></li><li class="orb-footer-newsletter"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/bbcnewsletter">Get Personalised Newsletters</a></li></ul><small><em class="orb-hilight">Copyright © 2020 BBC.</em> The BBC is not responsible for the content of external sites. <span class="orb-footer-links"><a href="https://web.archive.org/web/20200507070616/https://www.bbc.co.uk/help/web/links/" class="orb-hilight">Read about our approach to external linking.</a></span></small></div></div></div></footer></div><script id="orb-js-script" data-assetpath="https://nav.files.bbci.co.uk/orbit/1b2e292884201dd13064a9204e177864/" src="https://web.archive.org/web/20200507070616js_/https://nav.files.bbci.co.uk/orbit/1b2e292884201dd13064a9204e177864/js/orb.min.js"></script> <script type="text/javascript">require(['orb/lib/_$'], function($) { $.ready(function() { initialiseFooter(); }); var scrollCheckTimer; var didScroll; var previousPosition = 0; var delta = 5; var PROMO_SHOW_BREAKPOINT = 1500; var pageLength = 0; function initialiseFooter() { // Suppress this feature on browsers we no longer test var myNav = navigator.userAgent.toLowerCase(); var oldIE = (myNav.indexOf('msie') !== -1) && parseInt(myNav.split('msie')[1], 10) <= 10; if (!oldIE) { require(['orb/cookies'], function (bbccookies) { var disabledByCookie = (parseInt(bbccookies.get('ckns_nav_promofail')) || 0) >= 3; if (!disabledByCookie) { window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { setUpLazyLoading(); } }); } }); } } function setUpLazyLoading() { // offsetHeight is expensive to calculate, only do it once. pageLength = Math.abs(document.body.offsetHeight); if (pageLength < getViewportHeight() + 300 || pageLength - getCurrentPosition() < PROMO_SHOW_BREAKPOINT) { loadPromo(); } else { window.onscroll = function () { didScroll = true; }; scrollCheckTimer = setInterval(function () { if (didScroll) { hasScrolled(); didScroll = false; } }, 250); } } function loadPromo() { clearInterval(scrollCheckTimer); require(['orb/async/_footerpromo'], function(promo) { promo.init('https://web.archive.org/web/20200507070616/https://navpromo.api.bbci.co.uk', 'cbbc'); }); } function getViewportHeight() { return window.innerHeight; } function getCurrentPosition() { return Math.abs(window.scrollY || document.body.scrollTop || document.documentElement.scrollTop); } function hasScrolled() { var currentPosition = getCurrentPosition(); if (Math.abs(previousPosition - currentPosition) <= delta) { return; } if (currentPosition > previousPosition) { if ((pageLength - currentPosition) <= PROMO_SHOW_BREAKPOINT) { loadPromo(); } } previousPosition = currentPosition; } })</script><script type="text/javascript">/*<![CDATA[*/ require(['orb/nav'], function(nav) { window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { nav.loadJs('https://web.archive.org/web/20200507070616/https://nav.files.bbci.co.uk/orbit/1b2e292884201dd13064a9204e177864/js/edr.min.js'); } }); }); /*]]>*/</script> <!-- BBCDOTCOM bodyLast --><div class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && window.bbcdotcom.analytics && bbcdotcom.config && !bbcdotcom.config.isSportApp() && !bbcdotcom.config.isReel()) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.analytics.page, bbcdotcom.analytics); } /*]]>*/</script><noscript><img src="//web.archive.org/web/20200507070616im_/https://ssc.api.bbc.com/?c1=2&c2=19293874&ns_site=bbc&name=" height="1" width="1" alt=""></noscript><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.currencyProviders.write, bbcdotcom.currencyProviders); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.currencyProviders.postWrite, bbcdotcom.currencyProviders); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.stats && bbcdotcom.data.stats === 1 && bbcdotcom.utils && window.location.pathname === '/') { var wwhpEdition = bbcdotcom.utils.getMetaPropertyContent('wwhp-edition'); var _sf_async_config={}; /** CONFIGURATION START **/ _sf_async_config.uid = 50924; _sf_async_config.domain = "bbc.co.uk"; _sf_async_config.title = "Homepage"+(wwhpEdition !== '' ? ' - '+wwhpEdition : ''); _sf_async_config.sections = "Homepage"+(wwhpEdition !== '' ? ', Homepage - '+wwhpEdition : ''); _sf_async_config.region = wwhpEdition; _sf_async_config.path = "/"+(wwhpEdition !== '' ? '?'+wwhpEdition : ''); /** CONFIGURATION END **/ (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//web.archive.org/web/20200507070616/https://static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.bodyLast = true; }()); /*]]>*/</script></div><!-- BBCDOTCOM all code in page --><script type="text/javascript">if (window.SEARCHBOX.suppress === false && window.SEARCHBOX.locale && /^en-?.*?/.test(window.SEARCHBOX.locale)) { require.config({ paths: { "search/searchbox": window.SEARCHBOX.searchboxAppStaticPrefix, } }); if (bbcuser && bbcuser.isUKCombined) { bbcuser.isUKCombined().then(function (isUK) { if (isUK) { require(['search/searchbox/searchboxDrawer'], function (SearchboxDrawer) { SearchboxDrawer.run(window.SEARCHBOX); }); } }); } }</script> <script type="text/javascript">window.COOKIES_STATIC_HOST = 'https://web.archive.org/web/20200507070616/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-456.e308d0a/cookie-banner/cookie-prompt/';</script><script src="https://web.archive.org/web/20200507070616js_/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-456.e308d0a/cookie-banner/cookie-banners.bundle.js" async=""></script><script type="text/javascript">require(["istats-1","orb/cookies"],function(o,t){if(t.isAllowed("s1"))try{if(!require.s.contexts._.config.paths.idcta)return void i();require(["idcta/idcta-1"],function(t){t&&"function"==typeof t.getIStatsLabels&&o.addLabels(t.getIStatsLabels()),i()},function(t){throw t})}catch(t){console&&"function"==typeof console.log&&console.log("an exception occurred while adding idcta labels to istats, invoking istats without them",t),i()}function i(){o.invoke()}});</script><script type="text/javascript">"use strict";window.__reverb.__reverbLoadedPromise.then(function(e){return e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Failed to load reverb. No event sent")});</script><script src="https://web.archive.org/web/20200507070616js_/https://nav.files.bbci.co.uk//user-activity-helper/1d5fa47d9ba60d5c52b377ec3208b7be/js/detectview.bundle.js" async=""></script><script>require.config({"paths":{"bump-3":"//web.archive.org/web/20200507070616/https://emp.bbci.co.uk/emp/bump-3/bump-3","bump-4":"//web.archive.org/web/20200507070616/https://emp.bbci.co.uk/emp/bump-4/bump-4","echo-8.1.0":"//web.archive.org/web/20200507070616/https://static.bbci.co.uk/echoclient/modules/echo-8.1.0.js","jssignals-1":"//web.archive.org/web/20200507070616/https://static.bbci.co.uk/frameworks/jssignals/0.3.6/modules/jssignals-1","jquery-1":"//web.archive.org/web/20200507070616/https://static.test.bbc.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.7.2","jquery-1.9":"//web.archive.org/web/20200507070616/https://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.9.1","swfobject-2":"//web.archive.org/web/20200507070616/https://static.bbci.co.uk/frameworks/swfobject/0.1.10/sharedmodules/swfobject-2"}})</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-dynamic-feature-toggles/id/homepage/isiteproject/nrconfigs/version/1.1.1', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"optimizely":"true","superpromo":"true","NEWSROUND-312-single-top-story":"true","NEWSROUND-366-homepage-scroll-tracking":"true","NEWSROUND-448-new-bulletin":"true","NEWSROUND-450-additional-top-stories":"true","NEWSROUND-516-cpv-homepage":"true"}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%201/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"More Stories","items":[{"promoType":"story","timestamp":"2020-03-02T11:52:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E1AB\/production\/_111717775_1_nrcor_tom9.jpg","imgAlt":"coronavirus","headline":"Coronavirus: Everything you need to know","summary":"Take a look at all of our content about the coronavirus and what it means for you.","href":"https:\/\/web.archive.org\/web\/20200507070616\/https:\/\/www.bbc.co.uk\/newsround#more-stories-2","includeComments":false},{"id":"52544813","promoType":"media","timestamp":"2020-05-06T13:33:54+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B135\/production\/_112156354_b6d51053-96ce-401a-885b-efda921569b1.jpg","imgAlt":"Doggy spa day","headline":"Does your dog need a spa day?","summary":"Due to the lockdown, your dog might be in need of a little at-home pampering.","href":"\/newsround\/52544813","includeComments":false,"videoOptions":{"title":"Does your dog need a spa day?","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c9rym","vpid":"p08c9rys","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c9txl.jpg","mediaType":"video","mediaForm":"clip","duration":"2:55"}},{"id":"52557498","promoType":"media","timestamp":"2020-05-07T05:31:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/AEC0\/production\/_112163744_p08cfvxf.jpg","imgAlt":"Matt-edmondson-mollie-king.","headline":"Mollie and Matt tell us about this year's Young Audio Awards","summary":"Up-and-coming talent who make radio and podcasts will be recognised at an online version of the awards do on Thursday 7 May.","href":"\/newsround\/52557498","includeComments":false,"videoOptions":{"title":"The Young Audio Awards are back...with a difference!","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08cfv84","vpid":"p08cfv89","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08cfvxf.jpg","mediaType":"video","mediaForm":"clip","duration":"1:19"}},{"id":"52555723","promoType":"story","timestamp":"2020-05-06T08:38:14+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11E0A\/production\/_112162237_gettyimages-1158867585.jpg","imgAlt":"mars","headline":"The ancient rivers found on Mars","summary":"According to new research, the red planet had rivers around 3.7 billion years ago","href":"\/newsround\/52555723","includeComments":true},{"id":"52556376","promoType":"story","timestamp":"2020-05-06T11:10:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1082\/production\/_112162240_gettyimages-970464100.jpg","imgAlt":"jojo-siwa.","headline":"JoJo Siwa and Meghan Trainor join celebrity USA series of Gogglebox","summary":"A celebrity American version of the famous TV series Gogglebox is coming to the UK.","href":"\/newsround\/52556376","includeComments":true},{"id":"52549607","promoType":"story","timestamp":"2020-05-06T13:37:31+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8BBF\/production\/_112157753_gettyimages-509689300.jpg","imgAlt":"black-hole.","headline":"Could this be Earth's closest black hole?!","summary":"A team of astronomers from the European Southern Observatory have discovered a black hole just 1,000 light-years from our planet.","href":"\/newsround\/52549607","includeComments":true},{"id":"52483218","promoType":"story","timestamp":"2020-05-06T08:40:33+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14916\/production\/_112164248_animals.jpg","imgAlt":"zoo-animals.","headline":"How are UK zoos managing during lockdown?","summary":"How are zoos in the UK raising funds without visitors? Are the animals coping OK? Newsround spoke to some of the biggest zoos in the UK to find out.","href":"\/newsround\/52483218","includeComments":true},{"id":"52559539","promoType":"story","timestamp":"2020-05-06T12:38:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/368E\/production\/_112166931_archieparty.jpg","imgAlt":"Harry-Meghan-and-Archie.","headline":"Harry and Meghan celebrate Archie's first birthday","summary":"The Duke and Duchess of Sussex's son Archie is celebrating his first birthday","href":"\/newsround\/52559539","includeComments":true},{"id":"52562390","promoType":"story","timestamp":"2020-05-06T16:25:49+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/18692\/production\/_112168999_gettyimages-955830346.jpg","imgAlt":"elon-musk-and-grimes.","headline":"Elon Musk's new baby has a very unusual name!","summary":"The Tesla CEO and his girlfriend Grimes announced the birth of their son earlier this week, and he's been given a rather unusual name.","href":"\/newsround\/52562390","includeComments":true},{"id":"52560513","promoType":"story","timestamp":"2020-05-06T14:31:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6A32\/production\/_112168172_tomcruise.jpg","imgAlt":"tom-cruise-in-a-rocket.","headline":"Tom Cruise is filming a movie in space!","summary":"The Hollywood star is teaming up with Nasa to make the first ever film shot in space.","href":"\/newsround\/52560513","includeComments":true},{"id":"52502963","promoType":"media","timestamp":"2020-05-06T08:03:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1323C\/production\/_112069387_p08bzp1s.jpg","imgAlt":"Hands-holding-soil-plus-sprout.","headline":"Great gardening tips for lockdown","summary":"Fancy seeing how green-fingered you are? Check out these top tips from young gardeners.","href":"\/newsround\/52502963","includeComments":false,"videoOptions":{"title":"Great gardening tips for lockdown","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08bzmw0","vpid":"p08bzmwl","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08bzp1s.jpg","mediaType":"video","mediaForm":"clip","duration":"2:17"}},{"id":"52551934","promoType":"story","timestamp":"2020-05-06T05:55:17+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/F2F3\/production\/_112159126_tom_moore_pa.jpg","imgAlt":"Captain Tom Moore","headline":"Captain Tom Moore gets gold Blue Peter badge!","summary":"Captain Tom Moore has been awarded a gold Blue Peter badge for the amazing fundraising he's done for the NHS.","href":"\/newsround\/52551934","includeComments":true},{"id":"51376710","promoType":"media","timestamp":"2020-05-06T10:50:56+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/CE6F\/production\/_111874825_p08b2cyq.jpg","imgAlt":"Your planet logo","headline":"Your Planet: The week's big environment stories","summary":"Hayley brings you this week's Your Planet with news of micro-plastics in the sea, a flurry of flamigos and some interesting woodlands in the USA.","href":"\/newsround\/51376710","includeComments":false,"videoOptions":{"title":"Your Planet: The week's big environment stories","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c967p","vpid":"p08c967w","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c96rp.jpg","mediaType":"video","mediaForm":"clip","duration":"1:25"}},{"id":"52546937","promoType":"story","timestamp":"2020-05-06T05:19:13+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/0677\/production\/_112155610_gettyimages-1136837947.jpg","imgAlt":"mum-and-daughter-exercising.","headline":"Have you been moving less during lockdown?","summary":"Sport England has revealed that children have been less active during the coronavirus lockdown.","href":"\/newsround\/52546937","includeComments":true},{"id":"52550365","promoType":"story","timestamp":"2020-05-06T05:34:32+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/158DD\/production\/_112158288_!!penguinchickshatchatchesterzoo...andkeepersarenamingthemafternhshospitalsintributetoour2.jpg","imgAlt":"Humboldt penguin","headline":"Meet the baby penguins named after NHS heroes","summary":"Chester Zoo's five latest additions have each been named after famous NHS pioneers and hospitals.","href":"\/newsround\/52550365","includeComments":true},{"id":"52548734","promoType":"story","timestamp":"2020-05-06T05:19:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1DFB\/production\/_112157670_taika_reuters.jpg","imgAlt":"Taika-Waititi","headline":"Star Wars: What do we know about the next film?","summary":"Thor: Ragnarok director, Taika Waititi, is set make the next Star Wars movie.","href":"\/newsround\/52548734","includeComments":true},{"id":"52556245","promoType":"story","timestamp":"2020-05-06T08:47:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14CF4\/production\/_112163258_2fe47748-4add-4a13-bc0b-4d32a74d0b75.jpg","imgAlt":"School-child-in-China.","headline":"Pupils return to school in China","summary":"How China is opening schools again, with strict rules to prevent a second wave of coronavirus.","href":"\/newsround\/52556245","includeComments":true},{"id":"52537443","promoType":"media","timestamp":"2020-05-05T12:25:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4C2D\/production\/_112110591_p08c03dy.jpg","imgAlt":"Fake news generators","headline":"Who starts fake news about coronavirus - and why?","summary":"Conspiracy theories and speculation about coronavirus are everywhere online. But who starts these rumours? And who spreads them?","href":"\/newsround\/52537443","includeComments":false,"videoOptions":{"title":"Fake News: Who starts viral misinformation?","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08bzm4q","vpid":"p08bzm4s","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c03dy.jpg","mediaType":"video","mediaForm":"clip","duration":"2:45"}},{"id":"52550642","promoType":"story","timestamp":"2020-05-06T05:34:55+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D107\/production\/_108611535_classroom.jpg","imgAlt":"Classroom-teacher","headline":"Teachers warn of going back to school too early","summary":"Teachers in the UK and Ireland say schools shouldn't come back too early.","href":"\/newsround\/52550642","includeComments":true},{"id":"52545218","promoType":"story","timestamp":"2020-05-05T10:32:52+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/169C7\/production\/_112151629_gettyimages-1142576725.jpg","imgAlt":"cherry-tree","headline":"QUIZ: Can you name the tree?","summary":"In honour of the British Woodland Trust's annual Tree of the Year competition, we've put together a handy quiz to help you identify some of the UK's most popular trees!","href":"\/newsround\/52545218","includeComments":true},{"id":"52545226","promoType":"story","timestamp":"2020-05-05T14:18:51+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13727\/production\/_112155697_jamieindex.jpg","imgAlt":"jamie-johnson","headline":"We want YOUR questions for the Jamie Johnson cast","summary":"CBBC show Jamie Johnson is returning for a fifth series on 7 May - we'll be speaking to the cast very soon and want to ask them your questions!","href":"\/newsround\/52545226","includeComments":true},{"id":"51047406","promoType":"story","timestamp":"2020-05-05T05:41:29+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/BD56\/production\/_112107484_flowers-and-moon.jpg","imgAlt":"Full-moon-behind-flowers","headline":"Are you ready to see the super flower moon?","summary":"Thursday's full moon is called a super flower moon. But did you know there's a different name for each month's moon? Here's why...","href":"\/newsround\/51047406","includeComments":true},{"id":"52462814","promoType":"story","timestamp":"2020-05-05T08:13:27+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/152B1\/production\/_112050768_gettyimages-1217752899.jpg","imgAlt":"Food-box-of-essentials.","headline":"Number of children using food banks more than doubles","summary":"The Trussell Trust compared the last two weeks of March with the same period last year, and said there had been a 122% rise in emergency food parcels being given out to families with children.","href":"\/newsround\/52462814","includeComments":true},{"id":"52542426","promoType":"story","timestamp":"2020-05-05T08:30:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/93AD\/production\/_112150873_gettyimages-601066696.jpg","imgAlt":"white-tailed eagle","headline":"Rare white-tailed eagles return to England's skies","summary":"Experts have been working on a tracking project as they try to reintroduce Britain's largest bird of prey to the wild in England.","href":"\/newsround\/52542426","includeComments":true},{"id":"52541553","promoType":"story","timestamp":"2020-05-05T06:57:59+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10B99\/production\/_112150586_gettyimages-1211598501.jpg","imgAlt":"social-distancing.","headline":"What is the NHS coronavirus contact-tracing app?","summary":"A new virus tracking app is being trialled on the Isle of Wight","href":"\/newsround\/52541553","includeComments":true},{"id":"52541560","promoType":"story","timestamp":"2020-05-05T09:04:45+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A677\/production\/_112151624_gettyimages-937210306.jpg","imgAlt":"koalas.","headline":"How does a koala drink enough water?","summary":"Researchers have wondered for years how the marsupials get enough water to survive","href":"\/newsround\/52541560","includeComments":true},{"id":"51698180","promoType":"media","timestamp":"2020-05-05T08:15:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/179ED\/production\/_111094769_p0859hzb.jpg","imgAlt":"how to wash your hands.","headline":"World Hand Hygiene Day: How to wash your hands","summary":"It's really important to wash your hands to stop the spread of germs. Here's the best way to do it.","href":"\/newsround\/51698180","includeComments":false,"videoOptions":{"title":"How to wash your hands","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0859hdj","vpid":"p0859hdl","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0859hzb.jpg","mediaType":"video","mediaForm":"clip","duration":"0:43"}},{"id":"52529081","promoType":"story","timestamp":"2020-05-04T15:35:12+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1736F\/production\/_109578059_gettyimages-1134061972.jpg","imgAlt":"meteor showers are like pretty light shows in the sky","headline":"A mega meteor shower is coming this week","summary":"There's a massive meteor shower this week which you'll be able to see in parts of the UK.","href":"\/newsround\/52529081","includeComments":true},{"id":"52534775","promoType":"story","timestamp":"2020-05-05T11:38:10+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9EB1\/production\/_112152604_operationouch1.jpg","imgAlt":"dr-xand-operation-ouch.","headline":"Special Operation Ouch answers YOUR coronavirus questions","summary":"In a special episode Dr Chris, Dr Xand, and Dr Ronx will be answering some of biggest questions kids have had about coronavirus, and we find out how scientists are making a vaccine.","href":"\/newsround\/52534775","includeComments":true},{"id":"52487193","promoType":"media","timestamp":"2020-05-05T05:42:06+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1C10\/production\/_112048170_gettyimages-1076473108.jpg","imgAlt":"girl taking pet photos","headline":"How to take amazing pics of your pet","summary":"Get Paw-fect pics with our guide on shooting great pet portraits.","href":"\/newsround\/52487193","includeComments":false,"videoOptions":{"title":"How to take pet photos that pop!","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c6r31","vpid":"p08c6r38","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c6rfb.jpg","mediaType":"video","mediaForm":"clip","duration":"1:19"}},{"id":"52528725","promoType":"story","timestamp":"2020-05-04T12:43:56+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11634\/production\/_112102217_blackpink.jpg","imgAlt":"blackpink.","headline":"New BLACKPINK songs out in June","summary":"Yep the girls are back! BLACKPINK have confirmed a comeback for June 2020.","href":"\/newsround\/52528725","includeComments":true},{"id":"52447570","promoType":"story","timestamp":"2020-05-04T05:09:47+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8AB7\/production\/_112011553_gettyimages-1048322846.jpg","imgAlt":"Kids on a bouncy castle.","headline":"Year 6s and P7s: What leavers' events do you have planned?","summary":"You might have planned a prom or a disco - but if lockdown gets in the way of your party plans, what will do you do to celebrate?","href":"\/newsround\/52447570","includeComments":true},{"id":"52529078","promoType":"story","timestamp":"2020-05-04T12:23:56+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1000E\/production\/_112105556_gettyimages-1162543444.jpg","imgAlt":"Marcus Rashford.","headline":"Fancy a PE lesson with Mr. Rashford?","summary":"Footballer is putting together a PE lesson for BBC Bitesize and he's asked his fans for advice.","href":"\/newsround\/52529078","includeComments":true},{"id":"52526849","promoType":"story","timestamp":"2020-05-04T11:55:21+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1695E\/production\/_112101529_ba124171-7664-4516-975f-39a51133f85b.jpg","imgAlt":"dragon-capsule.","headline":"Nasa and SpaceX team up for US blast off","summary":"This month will be the first time since 2011 that astronauts have been launched into space from US soil.","href":"\/newsround\/52526849","includeComments":true},{"id":"52530878","promoType":"story","timestamp":"2020-05-04T12:43:11+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C058\/production\/_112104294_wolf_getty.jpg","imgAlt":"Wolf","headline":"First wild baby wolves for Belgium in 150 years","summary":"Belgium is hoping to soon welcome its first set of wild wolf cubs in more than 100 years.","href":"\/newsround\/52530878","includeComments":false},{"id":"52527526","promoType":"story","timestamp":"2020-05-04T07:58:30+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/ED26\/production\/_112101706_untitled.jpg","imgAlt":"Which Star Wars character are you?","headline":"Quiz: Which Star Wars character are you?","summary":"Have you ever wondered who you'd be if you were in the Star Wars universe? (Yes, you definitely have!) Well now's your chance to find out for sure...","href":"\/newsround\/52527526","includeComments":true},{"id":"48191799","promoType":"story","timestamp":"2020-05-04T06:06:40+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/125BD\/production\/_112079157_hedgehogawarenessweek1.jpg","imgAlt":"Hedgehog","headline":"How YOU can help our spiky friends for Hedgehog Awareness Week","summary":"It's Hedgehog Awareness Week from 3-9 May, and as numbers of the spiky animal are decreasing, we've got some top tips on how you can help them.","href":"\/newsround\/48191799","includeComments":false},{"id":"52532343","promoType":"media","timestamp":"2020-05-04T14:53:39+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/F334\/production\/_112106226_gettyimages-1211629921.jpg","imgAlt":"Two boys with masks on a bike on the promenade of Corigliano-Rossano, along the Ionian sea in Calabria, southern Italy.","headline":"Italians play outdoors after seven weeks in lockdown","summary":"Italy has started to relax some its coronavirus restrictions after nearly two months in lockdown.","href":"\/newsround\/52532343","includeComments":false,"videoOptions":{"title":"Italians play outdoors after seven weeks in lockdown","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c70hz","vpid":"p08c70j3","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c71gc.jpg","mediaType":"video","mediaForm":"clip","duration":"1:32"}},{"id":"52527127","promoType":"story","timestamp":"2020-05-04T10:58:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7BDE\/production\/_112101713_coinzz.jpg","imgAlt":"VE coins","headline":"Special coins to remember VE Day","summary":"The Royal Mint is releasing a set of coins to remember VE Day, which marked the end of the Second World War in Europe.","href":"\/newsround\/52527127","includeComments":true},{"id":"50434875","promoType":"media","timestamp":"2020-05-04T05:33:42+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14C12\/production\/_112101058_happymay4th.jpg","imgAlt":"tortoise","headline":"Happy News","summary":"De'Graft has this week's Happy News, including two 100th birthday celebrations and a dolphin rescue.","href":"\/newsround\/50434875","includeComments":false,"videoOptions":{"title":"Happy News","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c0qkh","vpid":"p08c0qkk","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c61lx.jpg","mediaType":"video","mediaForm":"clip","duration":"0:53"}},{"id":"52508543","promoType":"media","timestamp":"2020-05-04T07:11:55+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/3E0F\/production\/_112078851_p08c0m24.jpg","imgAlt":"teacher-with-kids-laughing-at-computer-screen.","headline":"We think these teachers are missing their pupils!","summary":"With schools being closed for lots of you right now, have you been wondering what your teachers are up to without you? Check this out!","href":"\/newsround\/52508543","includeComments":false,"videoOptions":{"title":"What do teachers get up to without pupils?","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c0lsc","vpid":"p08c0lsh","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c0m24.jpg","mediaType":"video","mediaForm":"clip","duration":"1:12"}},{"id":"52354888","promoType":"story","timestamp":"2020-05-03T08:54:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/084C\/production\/_112042120_befunky-collage.jpg","imgAlt":"food","headline":"Tasty recipes you can try making at home!","summary":"A lot of you have been spending your spare time cooking so we've tracked down some impressive chefs to help you out with some easy and quick dishes that you can make at home.","href":"\/newsround\/52354888","includeComments":false},{"id":"43245617","promoType":"media","timestamp":"2020-05-01T05:32:57+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/011A\/production\/_112028200_p08bsxbh.jpg","imgAlt":"Hologram of a zebra","headline":"Strange News","summary":"De'Graft has your strangest stories this week. We've got animals on a video chat, more animals on vehicles in Paris and a meteor getting close to Earth!","href":"\/newsround\/43245617","includeComments":false,"videoOptions":{"title":"Strange News","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08bsx97","vpid":"p08bsx99","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08bsxbh.jpg","mediaType":"video","mediaForm":"clip","duration":"0:58"}},{"id":"51318780","promoType":"story","timestamp":"2020-05-01T05:33:28+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10166\/production\/_112049856_background-1.jpg","imgAlt":"Quiz of the week","headline":"Quiz: Have you been following this week's news?","summary":"Have you been keeping up with the news this week? Test yourself with the Quiz of the Week!","href":"\/newsround\/51318780","includeComments":false},{"id":"52485316","promoType":"story","timestamp":"2020-04-30T13:50:47+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4CAF\/production\/_112013691_yourrainbows.jpg","imgAlt":"KIDS-WITH-RAINBOWS.","headline":"YOUR amazing rainbow pics","summary":"Lots of you have been making rainbows to brighten up your homes and streets - here are some of the pics you've sent us. Can you find your rainbow?","href":"\/newsround\/52485316","includeComments":true},{"id":"52457520","promoType":"story","timestamp":"2020-04-29T05:29:36+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4363\/production\/_112015271_mediaitem112015270.jpg","imgAlt":"Spider-Man","headline":"Take on our super Marvel quiz!","summary":"Spider-Man star Tom Holland is set to host a Marvel-themed quiz on Wednesday, but how do you do with ours?","href":"\/newsround\/52457520","includeComments":true},{"id":"23286976","promoType":"story","timestamp":"2020-04-23T05:32:40+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1BD9\/production\/_89892170_gettyimages-150481963.jpg","imgAlt":"Young Muslim girls show their hands decorated with henna after attending prayers on Eid Al-Fitr","headline":"What's it like fasting during Ramadan?","summary":"Muslims around the world will be observing the month of Ramadan. Find out more about the religious festival.","href":"\/newsround\/23286976","includeComments":false}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%204/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Gaming","items":[{"id":"52456575","promoType":"story","timestamp":"2020-04-29T05:37:48+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/934F\/production\/_112011773_mining.jpg","imgAlt":"data-mining.","headline":"How coding detectives dig out gaming secrets","summary":"What is data mining and how do people find out about new gaming updates?","href":"\/newsround\/52456575","includeComments":true},{"id":"52230222","promoType":"story","timestamp":"2020-04-14T13:01:54+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/3CB6\/production\/_111724551_fifa20.jpg","imgAlt":"Jadon-Sancho-FIFA20.","headline":"Gaming top tips: Fifa 20","summary":"Some hints, tips and tricks to help you reach the next level on Fifa 20.","href":"\/newsround\/52230222","includeComments":true},{"id":"52136993","promoType":"story","timestamp":"2020-04-08T12:52:18+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14156\/production\/_111526228_season22motage.jpg","imgAlt":"fortnite-chapter-2-season-2.","headline":"Gaming top tips: Fortnite","summary":"If you're a fan of Fortnite, then these top tips could help you out!","href":"\/newsround\/52136993","includeComments":true},{"id":"52105524","promoType":"story","timestamp":"2020-04-08T11:17:17+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4DA7\/production\/_111497891_mediaitem111497890.jpg","imgAlt":"animal-crossing.","headline":"Gaming top tips: Animal Crossing","summary":"If you've been playing Animal Crossing, here are some top tips that could help you out!","href":"\/newsround\/52105524","includeComments":true},{"id":"52118980","promoType":"story","timestamp":"2020-04-08T11:26:34+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7438\/production\/_111525792_minecraft_horizontal_key_art.jpg","imgAlt":"minecraft.","headline":"Gaming top tips: Minecraft","summary":"If you love Minecraft then we've got some top tips you might not have heard of to try out!","href":"\/newsround\/52118980","includeComments":true},{"id":"51962151","promoType":"story","timestamp":"2020-03-20T06:48:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/54DE\/production\/_111362712_mediaitem111362711.jpg","imgAlt":"animal-crossing-tent.","headline":"Animal Crossing New Horizons is out! Here's all you need to know","summary":"Nintendo have released the new Animal Crossing game - but what's it all about?","href":"\/newsround\/51962151","includeComments":true},{"id":"51514293","promoType":"story","timestamp":"2020-02-15T10:11:22+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8D41\/production\/_110916163_llama.jpg","imgAlt":"Fortnite supply llama","headline":"Fortnite creator wants an end to loot boxes","summary":"One of the top bosses at the gaming company which owns Fortnite says loot boxes are damaging the gaming industry and they need to end.","href":"\/newsround\/51514293","includeComments":false},{"id":"51415843","promoType":"story","timestamp":"2020-02-09T08:02:12+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/131DD\/production\/_110810387_netherite.jpg","imgAlt":"netherite-block-minecraft.","headline":"Minecraft: Is Netherite better than diamonds?!","summary":"A new update to the Nether in Minecraft has revealed a new material that could be better than diamonds!","href":"\/newsround\/51415843","includeComments":true},{"id":"51368413","promoType":"story","timestamp":"2020-02-04T17:49:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7A41\/production\/_104279213_garethbale.jpg","imgAlt":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","headline":"Gareth Bale has launched an e-sports team","summary":"Wales and Real Madrid player Gareth Bale has set up a new e-sports organisation!","href":"\/newsround\/51368413","includeComments":true},{"id":"51266122","promoType":"story","timestamp":"2020-02-09T08:11:56+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13E34\/production\/_110706418_b1e649d2-0c17-4265-9351-26a41a7f5264.jpg","imgAlt":"the-sims-game-characters.","headline":"The Sims turns 20!","summary":"The Sims is celebrating its 20th anniversary today! But how did it become one of the world's best-selling games? We've been finding out...","href":"\/newsround\/51266122","includeComments":true},{"id":"51132013","promoType":"story","timestamp":"2020-01-16T09:33:44+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8400\/production\/_110529733_5ec08753-2ca7-49b9-be4b-a4b236c412e2.jpg","imgAlt":"Ninja-skin-as-shown-on-Fortnite","headline":"Ninja is getting his own Fortnite skin","summary":"You can get it from midnight on 16 January, but it will only be around for three days!","href":"\/newsround\/51132013","includeComments":true},{"id":"51012498","promoType":"gallery","timestamp":"2020-01-07T06:24:32+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/CF1D\/production\/_110412035_tombraider.jpg","imgAlt":"Tomb Raider","headline":"The classic video games celebrated in stamps","summary":"Royal Mail has issued a set of 12 stamps celebrating the world of gaming with some classic video games from the 1980s and 90s - way before you were born!","href":"\/newsround\/51012498","includeComments":false},{"id":"50519638","promoType":"story","timestamp":"2019-11-22T14:52:32+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/BEA9\/production\/_109790884__107830468_ceea986d-b00c-4618-9417-6195b94a8463.jpg","imgAlt":"Grookey scorbunny and sobble","headline":"How Pok茅mon Sword and Shield became fastest-selling games","summary":"Pok茅mon Sword and Pok茅mon Shield have become the fastest-selling Nintendo Switch games of all time.","href":"\/newsround\/50519638","includeComments":true},{"id":"50472479","promoType":"story","timestamp":"2019-11-20T12:25:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A784\/production\/_109748824_gettyimages-1163037373.jpg","imgAlt":"google-stadia.","headline":"Google Stadia - is it any good?","summary":"Google's just launched Google Stadia - but is it as good as the hype makes out? Check out the pros and cons of the brand new gaming service","href":"\/newsround\/50472479","includeComments":true},{"id":"50435120","promoType":"story","timestamp":"2019-11-18T06:31:20+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1622C\/production\/_109686609_sonic1.jpg","imgAlt":"sonic-the-hedgehog.","headline":"Video game characters inspired by animals","summary":"Game developers have taken inspiration from the world around them to create these iconic characters.","href":"\/newsround\/50435120","includeComments":true}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%205/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Newsround Learn","items":[{"id":"51118364","promoType":"story","timestamp":"2020-01-15T13:50:19+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4453\/production\/_110519471_teacher1_getty.jpg","imgAlt":"Teacher and children in a school classroom","headline":"Welcome to Newsround Teachers","summary":"CBBC's Newsround is the only integrated daily news service for kids and we have a wealth of material that could be used in any classroom","href":"\/newsround\/51118364","includeComments":false},{"id":"51836693","promoType":"story","timestamp":"2020-05-06T08:44:18+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/70AA\/production\/_111224882_titlepage.png","imgAlt":"Big Stories and big words","headline":"Newsround Worksheet: Wednesday headlines and glossary","summary":"Here's all you need to know in a few lines.","href":"\/newsround\/51836693","includeComments":false},{"id":"51723696","promoType":"story","timestamp":"2020-04-15T15:08:55+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11EF5\/production\/_111116437_p07m5qmk.jpg","imgAlt":"newsround","headline":"Newsround: Our big stories this week","summary":"Find out what Newsround has been talking about this week","href":"\/newsround\/51723696","includeComments":false},{"id":"51826298","promoType":"media","timestamp":"2020-03-11T06:52:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9BD3\/production\/_111219893_youngreporter2.jpg","imgAlt":"Young-reporter-pic","headline":"The girl campaigning for more diversity in books","summary":"11-year-old Keziah thinks more needs to be done to promote authors from ethnic minority backgrounds.","href":"\/newsround\/51826298","includeComments":false,"videoOptions":{"title":"The girl who is campaigning for more diversity in books","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0867897","vpid":"p0867899","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08678mp.jpg","mediaType":"video","mediaForm":"clip","duration":"1:31"}},{"id":"51403096","promoType":"media","timestamp":"2020-02-07T09:39:52+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6180\/production\/_110806942_p082hykf.jpg","imgAlt":"inside-my-head-taking-control-of-my-anxiety-a-newsround-special","headline":"Inside My Head: Taking Control of My Anxiety","summary":"This Newsround special follows 16-year-old mental health campaigner Molly as she learns five different ways to battle her anxiety.","href":"\/newsround\/51403096","includeComments":false,"videoOptions":{"title":"Inside My Head: Taking Control of My Anxiety","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p082hygn","vpid":"p082hygq","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p082hykf.jpg","mediaType":"video","mediaForm":"clip","duration":"27:54"}},{"id":"42810179","promoType":"story","timestamp":"2020-03-17T15:15:56+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13DDA\/production\/_102207318_mediaitem102207317.jpg","imgAlt":"A single discarded plastic water bottle on a sandy beach","headline":"Guide: Why is plastic a problem?","summary":"More than eight million tonnes of plastic goes into the world's oceans each year. That's a lot of plastic which can harm animals and the environment. So what's being done about it?","href":"\/newsround\/42810179","includeComments":false},{"id":"44870690","promoType":"media","timestamp":"2018-07-18T10:10:02+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A313\/production\/_102574714_mediaitem102574713.jpg","imgAlt":"One of the largest Adelie penguin colonies in Antarctica situated in Hope Bay on Trinity Peninsula","headline":"What's it like to live in Antarctica?","summary":"Jess Walkup is a scientist who works in Antarctica. She has given Newsround an exclusive sneak peek at what it's like to live down there!","href":"\/newsround\/44870690","includeComments":false,"videoOptions":{"title":"What's it like to live in Antarctica?","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p06f1nxz","vpid":"p06f1ny1","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p06f1p3v.jpg","mediaType":"video","mediaForm":"clip","duration":"2:23"}},{"id":"48352689","promoType":"story","timestamp":"2019-06-04T06:04:16+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2037\/production\/_107074280_trumpindex.jpg","imgAlt":"trump-wall","headline":"Living with the wall: A Newsround special","summary":"Newsround has been to the US-Mexico border to find out more about US President Donald Trump's proposed border wall. Watch the series of special reports.","href":"\/newsround\/48352689","includeComments":true},{"id":"25036313","promoType":"story","timestamp":"2019-02-15T07:11:23+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7427\/production\/_92653792_anxiety.jpg","imgAlt":"Cartoon","headline":"What is anxiety?","summary":"Newsround spoke to mental health charity Mind to find out more about anxiety and what you can do if you're worried you might be experiencing it.","href":"\/newsround\/25036313","includeComments":false},{"id":"49997791","promoType":"story","timestamp":"2019-10-10T10:23:16+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6273\/production\/_95330252_whatismentalhealth.jpg","imgAlt":"mental-health-problem-graphic.","headline":"What is a mental health problem?","summary":"If you break your arm or catch a cold, it is more obvious to see that you are poorly. If you have a mental health problem, it can be harder to spot.","href":"\/newsround\/49997791","includeComments":false},{"id":"44503109","promoType":"media","timestamp":"2018-06-18T05:48:33+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/617A\/production\/_103645942_windrush-index.jpg","imgAlt":"Maya in a blue top, Levi in a red top, both smiling at the camera.","headline":"Finding My Family - Windrush","summary":"Maya and Levi head to the Caribbean to find out about where their grandparents grew up, and why they moved to the UK as part of a historic period that changed the face of Britain","href":"\/newsround\/44503109","includeComments":false,"videoOptions":{"title":"Finding My Family - Windrush: A Newsround Special","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p06b6wkx","vpid":"p06b6wl2","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p06b6wm4.jpg","mediaType":"video","mediaForm":"clip","duration":"27:19"}},{"id":"40848395","promoType":"media","timestamp":"2017-08-08T10:11:06+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14931\/production\/_97237248_titleslateweb.jpg","imgAlt":"Finding My Family graphic","headline":"Finding My Family - Partition","summary":"Sumayyah, Shubhashukla and Kamolpriya are on the mission of their lives to find out what happened to their families during the Partition of India.","href":"\/newsround\/40848395","includeComments":false,"videoOptions":{"title":"Watch Finding My Family - Partition: A Newsround Special","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p05bv3k7","vpid":"p05bv3k9","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p05bv3lz.jpg","mediaType":"video","mediaForm":"clip","duration":"23:43"}},{"id":"36247103","promoType":"media","timestamp":"2016-05-11T12:08:37+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9028\/production\/_89640963_nr_rhino_promo_image.jpg","imgAlt":"Defending the Rhino image","headline":"Defending the Rhino","summary":"Newsround travels thousands of miles to look at the fight that rhino are facing in South Africa for Defending the Rhino: A Newsround Special.","href":"\/newsround\/36247103","includeComments":false,"videoOptions":{"duration":"16:13"}},{"id":"35707765","promoType":"media","timestamp":"2016-03-21T16:41:45+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/15771\/production\/_88912978_88565600.jpg","imgAlt":"Is Tech Taking Over?","headline":"Is Tech Taking Over?","summary":"Technology is awesome, but are we using it too much? Find out more in the latest Newsround Special.","href":"\/newsround\/35707765","includeComments":false,"videoOptions":{"duration":"15:54"}}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52558191/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52558191":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52549607/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52549607":10}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52562390/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52562390":2}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52545218/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52545218":30}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52541560/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52541560":4}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52528725/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52528725":30}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52529078/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52529078":4}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52527526/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52527526":42}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-dynamic-feature-toggles/id/homepage/isiteproject/nrconfigs/version/undefined', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"optimizely":"true","superpromo":"true","NEWSROUND-312-single-top-story":"true","NEWSROUND-366-homepage-scroll-tracking":"true","NEWSROUND-448-new-bulletin":"true","NEWSROUND-450-additional-top-stories":"true","NEWSROUND-516-cpv-homepage":"true"}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52018134/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52018134":44}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51678449/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51678449":27}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52230222/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52230222":2}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51415843/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51415843":49}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51132013/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51132013":17}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__50435120/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__50435120":10}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-dynamic-feature-toggles/id/global/isiteproject/nrconfigs/version/1.1.1', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"chartbeat":"true","NEWSROUND-445-canvas":"true","canvas":"true","newsround-comments-signposting":"true","cloud-idcta":"true","NEWSROUND-409-reverb-stats":"true","NEWSROUND-463-LIVE-reverb-stats":"true","NEWSROUND-473-hide-h1-by-default":"false","NEWSROUND-481-reverb-custom-vars":"true","NEWSROUND-482-timestamp-abbreviation":"true","NEWSROUND-446-amp-stories":"true"}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52561722/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52561722":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52556379/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52556379":11}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52559539/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52559539":10}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52551934/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52551934":22}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52546937/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52546937":23}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52462814/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52462814":13}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52534775/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52534775":22}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52485316/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52485316":9}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52457520/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52457520":38}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51877454/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51877454":42}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52467760/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52467760":19}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52216267/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52216267":6}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52254282/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52254282":20}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52132683/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52132683":8}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51049866/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51049866":4}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__50328797/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__50328797":6}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__49793156/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__49793156":25}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__50519638/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__50519638":6}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__50472479/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__50472479":9}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/Superpromo/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":null,"items":[]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/Top%20Stories/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Top Stories","items":[{"id":"52558191","promoType":"story","timestamp":"2020-05-07T06:20:13+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B276\/production\/_112168654_gettyimages-476156360.jpg","imgAlt":"Cupcake-with-British-flag.","headline":"VE Day: What are you doing to celebrate?","summary":"On 8 May it's 75 years since VE, or Victory in Europe, Day. Lots of people are celebrating by making bunting or having tea parties. We want to know if you are celebrating and how?","href":"\/newsround\/52558191","includeComments":true},{"id":"52561722","promoType":"story","timestamp":"2020-05-07T06:05:15+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/18611\/production\/_112175899_banksy2.jpg","imgAlt":"banksy","headline":"New Banksy art shows NHS staff as superheroes","summary":"A new Banksy artwork paying tribute to NHS workers has appeared in a Southampton hospital corridor.","href":"\/newsround\/52561722","includeComments":true},{"id":"52564053","promoType":"story","timestamp":"2020-05-07T06:15:10+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C70D\/production\/_112175905_p08cgfll.jpg","imgAlt":"girl-staring-at-camera","headline":"'Let deaf people join in like everyone else!'","summary":"This Deaf Awareness Week, find out how you can support people who are deaf or have hearing loss.","href":"\/newsround\/52564053","includeComments":true},{"id":"48106687","promoType":"story","timestamp":"2020-05-07T06:18:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/EFC2\/production\/_106787316_gettyimages-485020819.jpg","imgAlt":"Buddha statue.","headline":"What is the Vesak festival?","summary":"Also known as Wesak or Buddha Day, Vesak is one of the most important Buddhist festivals and is usually celebrated in May or early June. This year, it falls on Thursday 7th May.","href":"\/newsround\/48106687","includeComments":false},{"id":"48201749","promoType":"story","timestamp":"2020-05-07T05:35:07+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6895\/production\/_106837762_1.jpg","imgAlt":"crowds-celebrating-VE-day.","headline":"What is VE Day?","summary":"VE Day - or Victory in Europe Day - marks the day towards the end of World War Two when fighting against Nazi Germany in Europe came to an end on 8 May 1945.","href":"\/newsround\/48201749","includeComments":false},{"id":"52548733","promoType":"story","timestamp":"2020-05-07T06:16:20+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9980\/production\/_112169293_flowers.jpg","imgAlt":"Wild flowers","headline":"Which wildflowers have YOU spotted on lockdown walks?","summary":"With most of us staying at home wildflowers have had a chance to flourish! Have you spotted interesting plants and flowers in your garden or while you've been out doing your daily exercise?","href":"\/newsround\/52548733","includeComments":true},{"id":"52556379","promoType":"story","timestamp":"2020-05-06T14:51:22+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A0BA\/production\/_112164114_potter.jpg","imgAlt":"harry-potter-daniel-radcliffe.","headline":"Harry Potter reads Harry Potter!","summary":"Daniel Radcliffe will be joined by some celebrity friends to read Harry Potter and the Philosopher's Stone","href":"\/newsround\/52556379","includeComments":true}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/Best%20videos/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":null,"items":[]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/Watch%20Newsround/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"content-type":"application\/json"}},"body":{"group":{"type":"responsive-video","title":"Watch Newsround","items":[{"assetId":"51311428","assetUri":"\/newsround\/news\/watch_newsround","firstCreated":"2020-01-30T11:14:24+00:00","headline":"Watch Newsround","language":"en-gb","lastUpdated":"2020-05-06T15:30:04+00:00","media":{"images":{"index":{"112167206":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/EB74\/production\/_112167206_p08cghd9.jpg","originCode":"cpsprodpb","altText":"hayley_newsround","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"112167208":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13994\/production\/_112167208_p08cghd9.jpg","originCode":"cpsprodpb","altText":"hayley_newsround","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52565426":{"caption":"Watch Newsround","entityType":"Clip","externalId":"p08cgh7t"}},"primary":{"52565426":{"caption":"Watch Newsround","entityType":"Clip","externalId":"p08cgh7t"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Watch Newsround ","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"How zoos are managing with lockdown, you tell us if you've gone 'lockdown lazy,' Captain Tom gets another award and it's happy birthday Archie!","type":"MAP"}],"semanticGroupName":"Watch Newsround"}}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52564053/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52564053":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%202/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Coronavirus","items":[{"id":"51204456","promoType":"story","timestamp":"2020-05-06T08:18:04+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8E76\/production\/_112107463_thumbnail.jpg","imgAlt":"NHS in a rainbow heart","headline":"Coronavirus: What is being done to tackle the virus?","summary":"Schools have closed, people have been told to stay at home and scientists and governments are working hard to stop the spread of the coronavirus and find a vaccine. Here's the latest on what's being done about it.","href":"\/newsround\/51204456","includeComments":true},{"id":"52534777","promoType":"media","timestamp":"2020-05-05T06:14:34+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1818D\/production\/_112110789_p08c7fgw.jpg","imgAlt":"dr-ronx.","headline":"Top tips of what to do in lockdown from Operation Ouch!","summary":"Dr Chris, Dr Xand, and Dr Ronx have lots of really good suggestions to keep you busy during lockdown.","href":"\/newsround\/52534777","includeComments":false,"videoOptions":{"title":"Operation Ouch Virus Alert 2","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c7dt2","vpid":"p08c7dtb","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c7fgw.jpg","mediaType":"video","mediaForm":"clip","duration":"1:05"}},{"id":"51877454","promoType":"story","timestamp":"2020-04-08T13:36:28+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/12FCB\/production\/_111717777_3_nrcor_tom7.jpg","imgAlt":"coronavirus","headline":"Frequently asked questions about coronavirus","summary":"We've put some of the most frequently asked questions about coronavirus into a handy guide.","href":"\/newsround\/51877454","includeComments":true},{"id":"51312911","promoType":"story","timestamp":"2020-05-05T06:40:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/494F\/production\/_111976781_mediaitem111976780.jpg","imgAlt":"A small bottle labeled with a \"Vaccine\" sticker is held near a medical syringe","headline":"Coronavirus: How do vaccines work?","summary":"Read this Newsround guide to find out more about vaccines and how long it could take to create one for coronavirus.","href":"\/newsround\/51312911","includeComments":false},{"id":"52393241","promoType":"story","timestamp":"2020-05-06T08:07:57+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/0033\/production\/_111915000_gettyimages-911029638.jpg","imgAlt":"girls at school","headline":"What do we know about when schools will re-open?","summary":"Schools in the UK are closed to everyone except vulnerable children and pupils whose parents are key workers but when could they reopen?","href":"\/newsround\/52393241","includeComments":false},{"id":"52467760","promoType":"story","timestamp":"2020-05-05T08:28:18+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13101\/production\/_112018087_gettyimages-170474250.jpg","imgAlt":"masks-france.","headline":"What are different countries doing about wearing masks at school?","summary":"France will make wearing a mask compulsory in secondary schools when it eases lockdown measures soon. So what are some other countries around the world doing about wearing masks in class?","href":"\/newsround\/52467760","includeComments":true},{"id":"51887051","promoType":"media","timestamp":"2020-04-08T14:59:42+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E75E\/production\/_111703295_p0890dfw.jpg","imgAlt":"Keyframe #6","headline":"Advice if you're worried about the coronavirus","summary":"Psychologist Laverne Antrobus has some tips if you're feeling worried or anxious about the coronavirus.","href":"\/newsround\/51887051","includeComments":false,"videoOptions":{"title":"Advice if you're worried about the coronavirus","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0890c9z","vpid":"p0890cb4","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0890dfw.jpg","mediaType":"video","mediaForm":"clip","duration":"2:00"}},{"id":"52538074","promoType":"media","timestamp":"2020-05-05T06:48:01+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B735\/production\/_112110964_p08c7fxt.jpg","imgAlt":"dr-xand.","headline":"Watch Dr Xand鈥檚 coronavirus video diary","summary":"Dr Xand from CBBC's Operation Ouch! tells us how he felt each day he was ill and how after he started to get better.","href":"\/newsround\/52538074","includeComments":false,"videoOptions":{"title":"Operation Ouch Virus Alert 4","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c7fkw","vpid":"p08c7fky","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c7fxt.jpg","mediaType":"video","mediaForm":"clip","duration":"1:57"}},{"id":"52227592","promoType":"media","timestamp":"2020-04-12T10:44:19+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10E3D\/production\/_111718196_p0892v48.jpg","imgAlt":"Child-in-kitchen.","headline":"100 activity ideas you can do indoors during lockdown","summary":"The Scouts have put together a big list of fun activities for you to do when you're at home looking for inspiration.","href":"\/newsround\/52227592","includeComments":false,"videoOptions":{"title":"100 activity ideas you do indoors during lockdown","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0892r84","vpid":"p0892r89","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0892v48.jpg","mediaType":"video","mediaForm":"clip","duration":"1:04"}},{"id":"52200989","promoType":"story","timestamp":"2020-05-05T15:07:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/168D9\/production\/_111877329_coronavirusmasks.jpg","imgAlt":"coronavirus-masks.","headline":"Coronavirus: What's the latest advice about masks?","summary":"You might have seen lots of people wearing masks and wondering whether you should be wearing one too. Here's the latest guidance and advice.","href":"\/newsround\/52200989","includeComments":true},{"id":"52300064","promoType":"media","timestamp":"2020-04-22T05:43:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/5782\/production\/_111820422_nrkeykids1.jpg","imgAlt":"key-worker-graphic","headline":"Coronavirus: The key workers' children still at school","summary":"Lots of you are staying home with your families at the moment, but what about those of you with parents or guardians who are key workers and still have to go to school?","href":"\/newsround\/52300064","includeComments":false,"videoOptions":{"title":"Coronavirus: still at school","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p089kmbz","vpid":"p089kmc1","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p089ksqn.jpg","mediaType":"video","mediaForm":"clip","duration":"1:43"}},{"id":"52351553","promoType":"story","timestamp":"2020-04-22T07:40:43+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2BC7\/production\/_111870211_supersix.jpg","imgAlt":"Composite-of-6-dogs.","headline":"Could dogs be used to test people for coronavirus?","summary":"Scientists think specially trained dogs may be able to tell if someone has the virus based on their smell.","href":"\/newsround\/52351553","includeComments":true},{"id":"52280887","promoType":"story","timestamp":"2020-04-18T09:15:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/22CC\/production\/_111780980_gettyimages-1208003898.jpg","imgAlt":"mask-gloves-hospital.","headline":"What is PPE & why is it in the news?","summary":"What is PPE, why is it important, and why are people talking about it?","href":"\/newsround\/52280887","includeComments":true},{"id":"52292291","promoType":"story","timestamp":"2020-04-15T11:52:25+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/155DF\/production\/_111791578_trumpgetty.jpg","imgAlt":"Donald Trump","headline":"Who is WHO? What does the World Health Organization do?","summary":"What is the World Health Organization, known as the WHO, and why is Donald Trump angry at them?","href":"\/newsround\/52292291","includeComments":false},{"id":"52357183","promoType":"media","timestamp":"2020-04-21T10:28:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/158FD\/production\/_111871388_p08b29ym.jpg","imgAlt":"dr ranj","headline":"Dr Ranj answers kids' questions about coronavirus","summary":"We know you guys have got loads of questions about coronavirus and about how we're living right now, so here's doctor and Strictly star Ranj Singh to answer some of them","href":"\/newsround\/52357183","includeComments":false,"videoOptions":{"title":"Dr Ranj answers kids' questions about coronavirus","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08b05zh","vpid":"p08b05zk","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08b29zb.jpg","mediaType":"video","mediaForm":"clip","duration":"3:15"}},{"id":"52314760","promoType":"media","timestamp":"2020-04-17T08:44:00+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2079\/production\/_111831380_p089r79z.jpg","imgAlt":"paul-and-freddy.","headline":"Paul & Freddy's mental health top tips","summary":"Newsround spoke to mental health coach Paul and his son Freddy, they do lots of work around mental health and have got some top tips to help you stay positive!","href":"\/newsround\/52314760","includeComments":false,"videoOptions":{"title":"Paul & Freddy's mental health top tips","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p089r71f","vpid":"p089r71l","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p089r79z.jpg","mediaType":"video","mediaForm":"clip","duration":"1:14"}},{"id":"52216267","promoType":"story","timestamp":"2020-04-08T17:24:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D20B\/production\/_111717735_gettyimages-1031664628.jpg","imgAlt":"open window","headline":"How to enjoy the outdoors...when you're stuck inside!","summary":"Nature and being outside is good for our bodies and our minds, so it can be tough when we're stuck inside. Here are some activities that make the most of the great outdoors, but don't have to involve leaving the house!","href":"\/newsround\/52216267","includeComments":true},{"id":"52254282","promoType":"story","timestamp":"2020-04-15T07:48:02+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D5F7\/production\/_111757745_gettyimages-1213912191.jpg","imgAlt":"girl-celebrating-birthday-with-friends-via-video-chat","headline":"Tips for celebrating your birthday during lockdown","summary":"Let us know what you have done to celebrate your birthday at home.","href":"\/newsround\/52254282","includeComments":true},{"id":"52214311","promoType":"media","timestamp":"2020-04-14T06:07:49+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/990D\/production\/_111718193_p0892rv3.jpg","imgAlt":"Keyframe #1","headline":"Worship during the Coronavirus","summary":"Due to the current social distancing measures, going out to your local church or synagogue isn't really allowed. However, some people are finding new ways to practice their faith at home.","href":"\/newsround\/52214311","includeComments":false,"videoOptions":{"title":"Worship during the Coronavirus","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0892rh2","vpid":"p0892rh5","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0892rv3.jpg","mediaType":"video","mediaForm":"clip","duration":"1:48"}},{"id":"52096366","promoType":"media","timestamp":"2020-04-03T08:03:29+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/ADD9\/production\/_111550544_gettyimages-1195910993.jpg","imgAlt":"hand-holding-a-phone-with-fake-news-on-the-screen-other-hand-about-to-press-share-on-the-screen","headline":"How to spot fake virus news","summary":"Fake news or misinformation about the coronavirus is spreading on the internet. Marianna Spring, a disinformation reporter at the BBC, tells us how we can spot it.","href":"\/newsround\/52096366","includeComments":false,"videoOptions":{"title":"How to spot fake news","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p088jx6v","vpid":"p088jx6z","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p088jx97.jpg","mediaType":"video","mediaForm":"clip","duration":"2:00"}},{"id":"52156671","promoType":"story","timestamp":"2020-04-03T14:46:21+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A64A\/production\/_111607524_gettyimages-619269222.jpg","imgAlt":"child-on-phone.","headline":"Worried about coronavirus? The BBC Own It app can help","summary":"The Own It keyboard can now recognise language related to coronavirus and provide advice to support users who may have fears or worries about it.","href":"\/newsround\/52156671","includeComments":false},{"id":"52018134","promoType":"story","timestamp":"2020-03-25T06:28:57+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/117D8\/production\/_111404617_title_-still_00078.png","imgAlt":"title-card","headline":"How to BOSS being stuck at home!","summary":"So you're stuck at home - here are some expert tips on looking after yourself","href":"\/newsround\/52018134","includeComments":true},{"id":"51989370","promoType":"media","timestamp":"2020-03-29T13:38:07+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/108EA\/production\/_111381876_p0878y4y.jpg","imgAlt":"Domino","headline":"Social distancing explained - with dominoes","summary":"Wondering how social distancing protects people from the coronavirus? Martin explains with help from his domino set.","href":"\/newsround\/51989370","includeComments":false,"videoOptions":{"title":"Dominoes show how social distancing can help","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0878wwm","vpid":"p0878wwp","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0878ylr.jpg","mediaType":"video","mediaForm":"clip","duration":"1:08"}},{"id":"51959552","promoType":"media","timestamp":"2020-03-23T11:34:02+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1812D\/production\/_111350689_p0871sr2.jpg","imgAlt":"DR James and his dog Oliver","headline":"Advice on looking after pets during Coronavirus","summary":"Dr James and dog, Oliver from The Pets Factor tell us how to keep your pet safe during Coronavirus","href":"\/newsround\/51959552","includeComments":false,"videoOptions":{"title":"Advice on looking after pets during Coronavirus","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0871sl2","vpid":"p0871sl6","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0871sr2.jpg","mediaType":"video","mediaForm":"clip","duration":"2:43"}},{"id":"51626137","promoType":"story","timestamp":"2020-03-11T16:52:29+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9D50\/production\/_111027204_gettyimages-1202707966.jpg","imgAlt":"people-wearing-masks.","headline":"Coronavirus is a 'pandemic'. But what does that mean?","summary":"The World Health Organization has officially declared coronavirus is now a pandemic - but that does that mean and what happens if a pandemic is declared?","href":"\/newsround\/51626137","includeComments":true}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52555723/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52555723":4}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52483218/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52483218":16}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52560513/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52560513":3}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52550365/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52550365":9}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52550642/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52550642":10}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52542426/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52542426":4}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52541553/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52541553":11}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52447570/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52447570":69}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52526849/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52526849":1}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52410744/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52410744":22}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51388287/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51388287":5}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51358462/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51358462":2}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51218555/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51218555":4}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51368413/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51368413":1}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51266122/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51266122":9}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52548733/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52548733":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%203/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Climate change","items":[{"id":"51644659","promoType":"media","timestamp":"2020-03-03T06:41:35+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1CFE\/production\/_111122470_laverne_antrobus.jpg","imgAlt":"Laverne antrobus tips","headline":"Five tips if you're feeling worried about climate change","summary":"Psychologist Laverne Antrobus has some advice if thinking about the environment is getting you down.","href":"\/newsround\/51644659","includeComments":false,"videoOptions":{"title":"5 tips if you're feeling worried about climate change","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p084t5bv","vpid":"p0853b0r","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0853b2n.jpg","mediaType":"video","mediaForm":"clip","duration":"0:56"}},{"id":"52410744","promoType":"story","timestamp":"2020-04-28T05:30:00+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/EE95\/production\/_111977016_titlepage_still_00513.jpg","imgAlt":"Koala-and-firefighter-title-page.","headline":"Australia: Life after the bushfires","summary":"Australia experienced the worst bushfire season ever in 2019-2020 with fires blazing for months in large parts of the country. So what was it like living near them? We've been to find out.","href":"\/newsround\/52410744","includeComments":true},{"id":"51388287","promoType":"story","timestamp":"2020-04-22T05:45:16+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/93B9\/production\/_111371873_gettyimages-1097731282.jpg","imgAlt":"climate-change-renewable-energy-graphic.","headline":"Five epic inventions fighting climate change","summary":"From carbon vacuums to kinetic pavements - check out these awesome inventions fighting climate change.","href":"\/newsround\/51388287","includeComments":true},{"id":"52132683","promoType":"story","timestamp":"2020-04-02T09:15:16+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/167A7\/production\/_111517029_gettyimages-506014770.jpg","imgAlt":"Whale","headline":"Hope for ocean recovery by 2050","summary":"A \"substantial\" recovery of life in the oceans could be achieved by 2050 if major threats such as climate change are dealt with, according to scientists.","href":"\/newsround\/52132683","includeComments":true},{"id":"52160277","promoType":"media","timestamp":"2020-04-15T07:54:48+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/AC9F\/production\/_111719144_p0892mcd.jpg","imgAlt":"Energy sparks.","headline":"The schools fighting to save energy","summary":"Schools around the country are taking part in a scheme to save energy. We've been to two schools in Bath who are taking this battle seriously!","href":"\/newsround\/52160277","includeComments":false,"videoOptions":{"title":"The schools fighting to save energy","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p088ly3m","vpid":"p0892kwy","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0892mcd.jpg","mediaType":"video","mediaForm":"clip","duration":"2:09"}},{"id":"51678449","promoType":"story","timestamp":"2020-03-03T06:16:18+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/085C\/production\/_111104120_gettyimages-165611479.jpg","imgAlt":"hand","headline":"How worried are YOU about the environment? Try Newsround's survey","summary":"Find out the results of Newsround's survey on climate anxiety and try it yourself.","href":"\/newsround\/51678449","includeComments":true},{"id":"51451737","promoType":"story","timestamp":"2020-03-03T06:12:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1641F\/production\/_111076119_nranxiety_00111.jpg","imgAlt":"girl stressed by the environment","headline":"Is climate change giving you nightmares?","summary":"Exclusive survey for BBC Newsround on climate anxiety shows young people losing sleep over climate change and lacking trust that adults will fix it.","href":"\/newsround\/51451737","includeComments":true},{"id":"51634984","promoType":"media","timestamp":"2020-02-28T06:27:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/88CA\/production\/_111081053_football.jpg","imgAlt":"Football with green paint streak","headline":"'Football isn't doing enough for the environment'","summary":"FIFA called Forest Green Rovers the greenest club in the world, we take a look at what it is doing to combat climate change. ","href":"\/newsround\/51634984","includeComments":false,"videoOptions":{"title":"Forest Green Rovers, how are they so eco friendly?","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p084vn12","vpid":"p084vn14","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p084y4r0.jpg","mediaType":"video","mediaForm":"clip","duration":"2:02"}},{"id":"51678157","promoType":"gallery","timestamp":"2020-02-29T07:23:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/162A3\/production\/_111078709_3cd7855c-c896-46e7-8e38-351940cf96f0.jpg","imgAlt":"Greta-Thunberg-in-Bristol","headline":"Greta's Bristol climate protest in pictures","summary":"Greta Thunberg joined thousands of young people for a climate strike in Bristol. The environmental campaigner said it was up to children \"to be the adults in the room\" so they could act to combat climate change.","href":"\/newsround\/51678157","includeComments":false},{"id":"51358462","promoType":"story","timestamp":"2020-02-04T07:05:30+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/15849\/production\/_110773188_gretathunberg3.jpg","imgAlt":"Greta-Thunberg.","headline":"'Greta effect' sees young people making voices heard online","summary":"A new report looking at young people's online and TV habits says the 'Greta effect' has led to more children using the internet and social media to campaign for change.","href":"\/newsround\/51358462","includeComments":true},{"id":"51218555","promoType":"story","timestamp":"2020-01-24T06:25:30+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11B0D\/production\/_110616427_willow-being-grown-for-bio-fuel.jpg","imgAlt":"willow-being-grown-for-bio-fuel.","headline":"Experts suggest FIVE ways the UK can fight climate change","summary":"A report from the government's official advisors on climate change says people should eat less meat and flying should cost more.","href":"\/newsround\/51218555","includeComments":true},{"id":"51049866","promoType":"story","timestamp":"2020-01-10T07:38:11+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C48B\/production\/_110451305_gettyimages-1132130918.jpg","imgAlt":"flooding-in-mozambique.","headline":"Five big climate issues affecting Africa","summary":"Climate change is an issue impacting many countries right across the world, including many in Africa. Here are some of the biggest issues affecting the continent.","href":"\/newsround\/51049866","includeComments":true},{"id":"50650795","promoType":"media","timestamp":"2019-12-04T06:25:52+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E023\/production\/_109997375_gettyimages-1186266775-1.jpg","imgAlt":"greta","headline":"Greta: 'People are underestimating the force of angry kids!'","summary":"Greta Thunberg has arrived in Portugal ahead of her visit to a big climate meeting. Listen to what she had to say.","href":"\/newsround\/50650795","includeComments":false,"videoOptions":{"title":"''People are underestimating the force of angry kids!","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p07ws94x","vpid":"p07ws950","holdingImageUrl":"\/\/web.archive.org\/web\/20200507070616\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p07wsff5.jpg","mediaType":"video","mediaForm":"clip","duration":"2:41"}},{"id":"50328797","promoType":"story","timestamp":"2019-11-07T09:05:30+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1E1A\/production\/_109560770_gettyimages-1130736511.jpg","imgAlt":"two-girls.","headline":"'Climate strike' is the Word of the Year","summary":"The term tops the Collins Dictionary shortlist for 2019. It's after activists like Greta Thunberg have inspired protests across the world calling for action on climate change.","href":"\/newsround\/50328797","includeComments":true},{"id":"49793156","promoType":"story","timestamp":"2019-09-23T05:52:02+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/17EBC\/production\/_108908979_aaauntitled.jpg","imgAlt":"eco-superhero","headline":"Climate Change Quiz: How green are you?","summary":"Take our quiz to work out how eco-friendly you try to be in your daily life","href":"\/newsround\/49793156","includeComments":true}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52556376/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52556376":12}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52548734/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52548734":9}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52556245/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52556245":9}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52545226/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52545226":48}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51047406/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51047406":17}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52529081/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52529081":13}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52527127/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52527127":3}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-cs-asset/assetUri/newsround%252fhome/previewGuid/undefined/version/1.5.1', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"assetId":"43745086","assetUri":"\/newsround\/home","firstCreated":"2018-04-12T14:56:30+00:00","firstPublished":"2018-04-12T15:09:30+00:00","groups":[{"type":"responsive-top-stories","title":"Top Stories","maxRelatedLinks":6,"items":[{"assetId":"52558191","assetUri":"\/newsround\/52558191","firstCreated":"2020-05-06T14:28:37+00:00","hasShortForm":true,"headline":"VE Day: What are you doing to celebrate?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-07T06:20:13+00:00","media":{"images":{"index":{"112168654":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B276\/production\/_112168654_gettyimages-476156360.jpg","originCode":"cpsprodpb","altText":"Cupcake-with-British-flag.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112168690":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/25D6\/production\/_112168690_gettyimages-476156360.jpg","originCode":"cpsprodpb","altText":"Cupcake-with-British-flag.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"On 8 May it's 75 years since VE, or Victory in Europe, Day. Lots of people are celebrating by making bunting or having tea parties. We want to know if you are celebrating and how?","type":"STY"},{"assetId":"52561722","assetUri":"\/newsround\/52561722","firstCreated":"2020-05-07T06:05:15+00:00","hasShortForm":true,"headline":"New Banksy art shows NHS staff as superheroes","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-07T06:05:15+00:00","media":{"images":{"index":{"112175899":{"height":1065,"width":1893,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/18611\/production\/_112175899_banksy2.jpg","originCode":"cpsprodpb","altText":"banksy","copyrightHolder":"Banksy","allowSyndication":false}},"index-thumbnail":{"112175901":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2ACD\/production\/_112175901_banksy2.jpg","originCode":"cpsprodpb","altText":"banksy","copyrightHolder":"Banksy","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A new Banksy artwork paying tribute to NHS workers has appeared in a Southampton hospital corridor.","type":"STY"},{"assetId":"52564053","assetUri":"\/newsround\/52564053","firstCreated":"2020-05-06T15:29:54+00:00","hasShortForm":true,"headline":"How can you support people with hearing loss?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-07T06:15:10+00:00","media":{"images":{"index":{"112175905":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C70D\/production\/_112175905_p08cgfll.jpg","originCode":"cpsprodpb","altText":"girl-staring-at-camera","copyrightHolder":"BBC","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"'Let deaf people join in like everyone else!'","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"This Deaf Awareness Week, find out how you can support people who are deaf or have hearing loss.","type":"STY"},{"assetId":"48106687","assetUri":"\/newsround\/48106687","firstCreated":"2019-05-15T10:25:12+00:00","hasShortForm":true,"headline":"What is the Vesak festival?","language":"en-gb","lastUpdated":"2020-05-07T06:18:41+00:00","media":{"images":{"index":{"106787316":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/EFC2\/production\/_106787316_gettyimages-485020819.jpg","originCode":"cpsprodpb","altText":"Buddha statue.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Also known as Wesak or Buddha Day, Vesak is one of the most important Buddhist festivals and is usually celebrated in May or early June. This year, it falls on Thursday 7th May.","type":"STY"},{"assetId":"48201749","assetUri":"\/newsround\/48201749","firstCreated":"2019-05-08T14:29:15+00:00","headline":"What is VE Day?","language":"en-gb","lastUpdated":"2020-05-07T05:35:07+00:00","media":{"images":{"index":{"106837762":{"height":417,"width":741,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6895\/production\/_106837762_1.jpg","originCode":"cpsprodpb","altText":"crowds-celebrating-VE-day.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"106837764":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B6B5\/production\/_106837764_1.jpg","originCode":"cpsprodpb","altText":"crowds-celebrating-VE-day.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"VE Day - or Victory in Europe Day - marks the day towards the end of World War Two when fighting against Nazi Germany in Europe came to an end on 8 May 1945.","type":"STY"},{"assetId":"52548733","assetUri":"\/newsround\/52548733","firstCreated":"2020-05-07T05:32:15+00:00","hasShortForm":true,"headline":"Which wildflowers have YOU spotted on lockdown walks?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-07T06:16:20+00:00","media":{"images":{"index":{"112169293":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9980\/production\/_112169293_flowers.jpg","originCode":"cpsprodpb","altText":"Wild flowers","copyrightHolder":"Getty Images & Plantlife","allowSyndication":false}},"index-thumbnail":{"112169292":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7270\/production\/_112169292_flowers.jpg","originCode":"cpsprodpb","altText":"Wild flowers","copyrightHolder":"Getty Images & Plantlife","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"With most of us staying at home wildflowers have had a chance to flourish! Have you spotted interesting plants and flowers in your garden or while you've been out doing your daily exercise?","type":"STY"},{"assetId":"52556379","assetUri":"\/newsround\/52556379","firstCreated":"2020-05-06T13:12:25+00:00","hasShortForm":true,"headline":"Harry Potter reads Harry Potter!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T14:51:22+00:00","media":{"images":{"index":{"112164114":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A0BA\/production\/_112164114_potter.jpg","originCode":"cpsprodpb","altText":"harry-potter-daniel-radcliffe.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112167203":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7644\/production\/_112167203_potter.jpg","originCode":"cpsprodpb","altText":"harry-potter-daniel-radcliffe.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Daniel Radcliffe will be joined by some celebrity friends to read Harry Potter and the Philosopher's Stone","type":"STY"}],"semanticGroupName":"Top Stories"},{"type":"responsive-video","title":"Watch Newsround","items":[{"assetId":"51311428","assetUri":"\/newsround\/news\/watch_newsround","firstCreated":"2020-01-30T11:14:24+00:00","headline":"Watch Newsround","language":"en-gb","lastUpdated":"2020-05-06T15:30:04+00:00","media":{"images":{"index":{"112167206":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/EB74\/production\/_112167206_p08cghd9.jpg","originCode":"cpsprodpb","altText":"hayley_newsround","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"112167208":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13994\/production\/_112167208_p08cghd9.jpg","originCode":"cpsprodpb","altText":"hayley_newsround","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52565426":{"caption":"Watch Newsround","entityType":"Clip","externalId":"p08cgh7t"}},"primary":{"52565426":{"caption":"Watch Newsround","entityType":"Clip","externalId":"p08cgh7t"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Watch Newsround ","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"How zoos are managing with lockdown, you tell us if you've gone 'lockdown lazy,' Captain Tom gets another award and it's happy birthday Archie!","type":"MAP"}],"semanticGroupName":"Watch Newsround"},{"type":"responsive-cluster","title":"Slice 1 - Dark purple with teal index card","strapline":{"name":"More Stories"},"items":[{"assetTypeCode":"PRO","contentType":"Text","firstCreated":"2020-03-02T11:52:03+00:00","lastUpdated":"2020-03-02T11:52:03+00:00","links":{"highweb":"https:\/\/web.archive.org\/web\/20200507070616\/https:\/\/www.bbc.co.uk\/newsround#more-stories-2","desktop":"https:\/\/web.archive.org\/web\/20200507070616\/https:\/\/www.bbc.co.uk\/newsround#more-stories-2"},"media":{"images":{"index":{"111717775":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E1AB\/production\/_111717775_1_nrcor_tom9.jpg","originCode":"cpsprodpb","altText":"coronavirus","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{},"summary":"Take a look at all of our content about the coronavirus and what it means for you.","title":"Coronavirus: Everything you need to know","type":"LINK"},{"assetId":"52544813","assetUri":"\/newsround\/52544813","firstCreated":"2020-05-06T13:33:54+00:00","headline":"Does your dog need a spa day?","language":"en-gb","lastUpdated":"2020-05-06T13:33:54+00:00","media":{"images":{"index":{"112156354":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B135\/production\/_112156354_b6d51053-96ce-401a-885b-efda921569b1.jpg","originCode":"cpsprodpb","altText":"Doggy spa day","copyrightHolder":"Getty Images","allowSyndication":true}}},"videos":{"index":{"52544814":{"caption":"Give your dog an at-home spa day!","entityType":"Clip","externalId":"p08c9rym"}},"primary":{"52544814":{"caption":"Give your dog an at-home spa day!","entityType":"Clip","externalId":"p08c9rym"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"Home","id":"101226","uri":"\/newsround\/front_page","urlIdentifier":"\/newsround\/front_page"},"summary":"Due to the lockdown, your dog might be in need of a little at-home pampering.","type":"MAP"},{"assetId":"52557498","assetUri":"\/newsround\/52557498","firstCreated":"2020-05-07T05:31:41+00:00","headline":"Mollie and Matt tell us about this year's Young Audio Awards","language":"en-gb","lastUpdated":"2020-05-07T05:31:41+00:00","media":{"images":{"index":{"112163744":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/AEC0\/production\/_112163744_p08cfvxf.jpg","originCode":"cpsprodpb","altText":"Matt-edmondson-mollie-king.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52557499":{"caption":"The Young Audio Awards are back...with a difference!","entityType":"Clip","externalId":"p08cfv84"}},"primary":{"52557499":{"caption":"The Young Audio Awards are back...with a difference!","entityType":"Clip","externalId":"p08cfv84"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Up-and-coming talent who make radio and podcasts will be recognised at an online version of the awards do on Thursday 7 May.","type":"MAP"},{"assetId":"52555723","assetUri":"\/newsround\/52555723","firstCreated":"2020-05-06T08:37:34+00:00","hasShortForm":true,"headline":"The ancient rivers found on Mars","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T08:38:14+00:00","media":{"images":{"index":{"112162237":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11E0A\/production\/_112162237_gettyimages-1158867585.jpg","originCode":"cpsprodpb","altText":"mars","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"According to new research, the red planet had rivers around 3.7 billion years ago","type":"STY"},{"assetId":"52556376","assetUri":"\/newsround\/52556376","firstCreated":"2020-05-06T11:10:38+00:00","hasShortForm":true,"headline":"JoJo Siwa and Meghan Trainor join celebrity USA series of Gogglebox","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T11:10:38+00:00","media":{"images":{"index":{"112162240":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1082\/production\/_112162240_gettyimages-970464100.jpg","originCode":"cpsprodpb","altText":"jojo-siwa.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112163359":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/17468\/production\/_112163359_gettyimages-970464100.jpg","originCode":"cpsprodpb","altText":"jojo-siwa.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"A celebrity American version of the famous TV series Gogglebox is coming to the UK.","type":"STY"},{"assetId":"52549607","assetUri":"\/newsround\/52549607","firstCreated":"2020-05-06T13:37:31+00:00","hasShortForm":true,"headline":"Could this be Earth's closest black hole?!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T13:37:31+00:00","media":{"images":{"index":{"112157753":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8BBF\/production\/_112157753_gettyimages-509689300.jpg","originCode":"cpsprodpb","altText":"black-hole.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112158280":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/205D\/production\/_112158280_gettyimages-509689300.jpg","originCode":"cpsprodpb","altText":"black-hole.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A team of astronomers from the European Southern Observatory have discovered a black hole just 1,000 light-years from our planet.","type":"STY"},{"assetId":"52483218","assetUri":"\/newsround\/52483218","firstCreated":"2020-05-05T17:48:18+00:00","hasShortForm":true,"headline":"How are UK zoos managing during lockdown?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T08:40:33+00:00","media":{"images":{"index":{"112164248":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14916\/production\/_112164248_animals.jpg","originCode":"cpsprodpb","altText":"zoo-animals.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112047339":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/16CBE\/production\/_112047339_zoopic.png","originCode":"cpsprodpb","altText":"zoo-animals.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"How are zoos in the UK raising funds without visitors? Are the animals coping OK? Newsround spoke to some of the biggest zoos in the UK to find out.","type":"STY"},{"assetId":"52559539","assetUri":"\/newsround\/52559539","firstCreated":"2020-05-06T12:38:03+00:00","hasShortForm":true,"headline":"Harry and Meghan celebrate Archie's first birthday","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T12:38:03+00:00","media":{"images":{"index":{"112166931":{"height":633,"width":1125,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/368E\/production\/_112166931_archieparty.jpg","originCode":"cpsprodpb","altText":"Harry-Meghan-and-Archie.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Duke and Duchess of Sussex's son Archie is celebrating his first birthday","type":"STY"},{"assetId":"52562390","assetUri":"\/newsround\/52562390","firstCreated":"2020-05-06T16:25:49+00:00","hasShortForm":true,"headline":"Elon Musk's new baby has a very unusual name!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T16:25:49+00:00","media":{"images":{"index":{"112168999":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/18692\/production\/_112168999_gettyimages-955830346.jpg","originCode":"cpsprodpb","caption":"Elon Musk and Grimes welcomed their new baby to the world on Star Wars Day","altText":"elon-musk-and-grimes.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112171684":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/BDE9\/production\/_112171684_gettyimages-955830346.jpg","originCode":"cpsprodpb","caption":"Elon Musk and Grimes welcomed their new baby to the world on Star Wars Day","altText":"elon-musk-and-grimes.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Tesla CEO and his girlfriend Grimes announced the birth of their son earlier this week, and he's been given a rather unusual name.","type":"STY"},{"assetId":"52560513","assetUri":"\/newsround\/52560513","firstCreated":"2020-05-06T14:31:38+00:00","hasShortForm":true,"headline":"Tom Cruise is filming a movie in space!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T14:31:38+00:00","media":{"images":{"index":{"112168172":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6A32\/production\/_112168172_tomcruise.jpg","originCode":"cpsprodpb","altText":"tom-cruise-in-a-rocket.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112168174":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B852\/production\/_112168174_tomcruise.jpg","originCode":"cpsprodpb","altText":"tom-cruise-in-a-rocket.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Hollywood star is teaming up with Nasa to make the first ever film shot in space.","type":"STY"},{"assetId":"52502963","assetUri":"\/newsround\/52502963","firstCreated":"2020-05-06T08:00:23+00:00","headline":"Great gardening tips for lockdown","language":"en-gb","lastUpdated":"2020-05-06T08:03:38+00:00","media":{"images":{"index":{"112069387":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1323C\/production\/_112069387_p08bzp1s.jpg","originCode":"cpsprodpb","altText":"Hands-holding-soil-plus-sprout.","copyrightHolder":"Getty Images","allowSyndication":true}}},"videos":{"index":{"52502964":{"caption":"Great gardening tips for lockdown","entityType":"Clip","externalId":"p08bzmw0"}},"primary":{"52502964":{"caption":"Great gardening tips for lockdown","entityType":"Clip","externalId":"p08bzmw0"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Fancy seeing how green-fingered you are? Check out these top tips from young gardeners.","type":"MAP"},{"assetId":"52551934","assetUri":"\/newsround\/52551934","firstCreated":"2020-05-06T05:53:53+00:00","hasShortForm":true,"headline":"Captain Tom Moore gets gold Blue Peter badge!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T05:55:17+00:00","media":{"images":{"index":{"112159126":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/F2F3\/production\/_112159126_tom_moore_pa.jpg","originCode":"cpsprodpb","altText":"Captain Tom Moore","copyrightHolder":"PA Media","allowSyndication":true}},"index-thumbnail":{"112159128":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14113\/production\/_112159128_tom_moore_pa.jpg","originCode":"cpsprodpb","altText":"Captain Tom Moore","copyrightHolder":"PA Media","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Captain Tom Moore has been awarded a gold Blue Peter badge for the amazing fundraising he's done for the NHS.","type":"STY"},{"assetId":"51376710","assetUri":"\/newsround\/51376710","firstCreated":"2020-02-04T17:42:31+00:00","headline":"Your Planet: The week's big environment stories","language":"en-gb","lastUpdated":"2020-05-06T10:50:56+00:00","media":{"images":{"index":{"111874825":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/CE6F\/production\/_111874825_p08b2cyq.jpg","originCode":"cpsprodpb","altText":"Your planet logo","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111032897":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/137CF\/production\/_111032897_p083t86g.jpg","originCode":"cpsprodpb","altText":"A picture of earth from space","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52542781":{"caption":"Your Planet: The week's big environment stories","entityType":"Clip","externalId":"p08c967p"}},"primary":{"52542781":{"caption":"Your Planet: The week's big environment stories","entityType":"Clip","externalId":"p08c967p"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Hayley brings you this week's Your Planet with news of micro-plastics in the sea, a flurry of flamigos and some interesting woodlands in the USA.","type":"MAP"},{"assetId":"52546937","assetUri":"\/newsround\/52546937","firstCreated":"2020-05-05T17:26:20+00:00","hasShortForm":true,"headline":"Have you been moving less during lockdown?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T05:19:13+00:00","media":{"images":{"index":{"112155610":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/0677\/production\/_112155610_gettyimages-1136837947.jpg","originCode":"cpsprodpb","altText":"mum-and-daughter-exercising.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112155612":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/5497\/production\/_112155612_gettyimages-1136837947.jpg","originCode":"cpsprodpb","altText":"mum-and-daughter-exercising.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Sport England has revealed that children have been less active during the coronavirus lockdown.","type":"STY"},{"assetId":"52550365","assetUri":"\/newsround\/52550365","firstCreated":"2020-05-05T17:42:25+00:00","hasShortForm":true,"headline":"Meet the baby penguins named after NHS heroes","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T05:34:32+00:00","media":{"images":{"index":{"112158288":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/158DD\/production\/_112158288_!!penguinchickshatchatchesterzoo...andkeepersarenamingthemafternhshospitalsintributetoour2.jpg","originCode":"cpsprodpb","caption":"The penguins have been named to honour NHS heroes","altText":"Humboldt penguin","copyrightHolder":"Chester Zoo","allowSyndication":false}},"index-thumbnail":{"112158895":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E9ED\/production\/_112158895_!!penguinchickshatchatchesterzoo...andkeepersarenamingthemafternhshospitalsintributetoour2.jpg","originCode":"cpsprodpb","caption":"The penguins have been named to honour NHS heroes","altText":"Humboldt penguin","copyrightHolder":"Chester Zoo","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Chester Zoo's five latest additions have each been named after famous NHS pioneers and hospitals.","type":"STY"},{"assetId":"52548734","assetUri":"\/newsround\/52548734","firstCreated":"2020-05-05T16:50:35+00:00","hasShortForm":true,"headline":"Star Wars: What do we know about the next film?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T05:19:03+00:00","media":{"images":{"index":{"112157670":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1DFB\/production\/_112157670_taika_reuters.jpg","originCode":"cpsprodpb","altText":"Taika-Waititi","copyrightHolder":"Reuters","allowSyndication":true}},"index-thumbnail":{"112157672":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6C1B\/production\/_112157672_taika_reuters.jpg","originCode":"cpsprodpb","altText":"Taika-Waititi","copyrightHolder":"Reuters","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Thor: Ragnarok director, Taika Waititi, is set make the next Star Wars movie.","type":"STY"},{"assetId":"52556245","assetUri":"\/newsround\/52556245","firstCreated":"2020-05-06T08:47:41+00:00","hasShortForm":true,"headline":"Pupils return to school in China","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T08:47:41+00:00","media":{"images":{"index":{"112163258":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14CF4\/production\/_112163258_2fe47748-4add-4a13-bc0b-4d32a74d0b75.jpg","originCode":"cpsprodpb","altText":"School-child-in-China.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"How China is opening schools again, with strict rules to prevent a second wave of coronavirus.","type":"STY"},{"assetId":"52537443","assetUri":"\/newsround\/52537443","firstCreated":"2020-05-05T12:21:51+00:00","headline":"Who starts fake news about coronavirus - and why?","language":"en-gb","lastUpdated":"2020-05-05T12:25:03+00:00","media":{"images":{"index":{"112110591":{"height":575,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4C2D\/production\/_112110591_p08c03dy.jpg","originCode":"cpsprodpb","altText":"Fake news generators","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"112110593":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9A4D\/production\/_112110593_p08c03dy.jpg","originCode":"cpsprodpb","altText":"Fake news generators","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52503972":{"caption":"Watch this video to find out who starts viral misinformation and who spreads them?","entityType":"Clip","externalId":"p08bzm4q"}},"primary":{"52503972":{"caption":"Watch this video to find out who starts viral misinformation and who spreads them?","entityType":"Clip","externalId":"p08bzm4q"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Conspiracy theories and speculation about coronavirus are everywhere online. But who starts these rumours? And who spreads them?","type":"MAP"},{"assetId":"52550642","assetUri":"\/newsround\/52550642","firstCreated":"2020-05-05T16:21:30+00:00","hasShortForm":true,"headline":"Teachers warn of going back to school too early","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T05:34:55+00:00","media":{"images":{"index":{"108611535":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D107\/production\/_108611535_classroom.jpg","originCode":"cpsprodpb","altText":"Classroom-teacher","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112156444":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/ADB1\/production\/_112156444_classroom.jpg","originCode":"cpsprodpb","altText":"Classroom-teacher","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Teachers in the UK and Ireland say schools shouldn't come back too early.","type":"STY"},{"assetId":"52545218","assetUri":"\/newsround\/52545218","firstCreated":"2020-05-05T10:32:52+00:00","hasShortForm":true,"headline":"QUIZ: Can you name the tree?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T10:32:52+00:00","media":{"images":{"index":{"112151629":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/169C7\/production\/_112151629_gettyimages-1142576725.jpg","originCode":"cpsprodpb","altText":"cherry-tree","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112151628":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/142B7\/production\/_112151628_gettyimages-1142576725.jpg","originCode":"cpsprodpb","altText":"cherry-tree","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"In honour of the British Woodland Trust's annual Tree of the Year competition, we've put together a handy quiz to help you identify some of the UK's most popular trees!","type":"STY"},{"assetId":"52545226","assetUri":"\/newsround\/52545226","firstCreated":"2020-05-05T14:18:51+00:00","hasShortForm":true,"headline":"We want YOUR questions for the Jamie Johnson cast","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T14:18:51+00:00","media":{"images":{"index":{"112155697":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13727\/production\/_112155697_jamieindex.jpg","originCode":"cpsprodpb","altText":"jamie-johnson","copyrightHolder":"CBBC","allowSyndication":false}},"index-thumbnail":{"112156440":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1171\/production\/_112156440_jamieindex.jpg","originCode":"cpsprodpb","altText":"jamie-johnson","copyrightHolder":"CBBC","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"CBBC show Jamie Johnson is returning for a fifth series on 7 May - we'll be speaking to the cast very soon and want to ask them your questions!","type":"STY"},{"assetId":"51047406","assetUri":"\/newsround\/51047406","firstCreated":"2020-01-09T13:50:47+00:00","hasShortForm":true,"headline":"Are you ready to see the super flower moon?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T05:41:29+00:00","media":{"images":{"index":{"112107484":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/BD56\/production\/_112107484_flowers-and-moon.jpg","originCode":"cpsprodpb","altText":"Full-moon-behind-flowers","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112107486":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10B76\/production\/_112107486_flowers-and-moon.jpg","originCode":"cpsprodpb","altText":"Full-moon-behind-flowers","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Thursday's full moon is called a super flower moon. But did you know there's a different name for each month's moon? Here's why...","type":"STY"},{"assetId":"52462814","assetUri":"\/newsround\/52462814","firstCreated":"2020-05-05T05:38:37+00:00","hasShortForm":true,"headline":"Number of children using food banks more than doubles","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T08:13:27+00:00","media":{"images":{"index":{"112050768":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/152B1\/production\/_112050768_gettyimages-1217752899.jpg","originCode":"cpsprodpb","altText":"Food-box-of-essentials.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112150102":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4E89\/production\/_112150102_gettyimages-1217752899.jpg","originCode":"cpsprodpb","altText":"Food-box-of-essentials.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Trussell Trust compared the last two weeks of March with the same period last year, and said there had been a 122% rise in emergency food parcels being given out to families with children.","type":"STY"},{"assetId":"52542426","assetUri":"\/newsround\/52542426","firstCreated":"2020-05-05T08:30:05+00:00","hasShortForm":true,"headline":"Rare white-tailed eagles return to England's skies","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T08:30:05+00:00","media":{"images":{"index":{"112150873":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/93AD\/production\/_112150873_gettyimages-601066696.jpg","originCode":"cpsprodpb","altText":"white-tailed eagle","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112150895":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E99D\/production\/_112150895_gettyimages-1172550032.jpg","originCode":"cpsprodpb","altText":"white-tailed eagle","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Experts have been working on a tracking project as they try to reintroduce Britain's largest bird of prey to the wild in England.","type":"STY"},{"assetId":"52541553","assetUri":"\/newsround\/52541553","firstCreated":"2020-05-05T06:49:01+00:00","hasShortForm":true,"headline":"What is the NHS coronavirus contact-tracing app?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T06:57:59+00:00","media":{"images":{"index":{"112150586":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10B99\/production\/_112150586_gettyimages-1211598501.jpg","originCode":"cpsprodpb","altText":"social-distancing.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112150588":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/159B9\/production\/_112150588_gettyimages-1211598501.jpg","originCode":"cpsprodpb","altText":"social-distancing.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"A new virus tracking app is being trialled on the Isle of Wight","type":"STY"},{"assetId":"52541560","assetUri":"\/newsround\/52541560","firstCreated":"2020-05-05T08:35:33+00:00","hasShortForm":true,"headline":"How does a koala drink enough water?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T09:04:45+00:00","media":{"images":{"index":{"112151624":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A677\/production\/_112151624_gettyimages-937210306.jpg","originCode":"cpsprodpb","altText":"koalas.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112151185":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E303\/production\/_112151185_gettyimages-937210306.jpg","originCode":"cpsprodpb","altText":"koalas.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Researchers have wondered for years how the marsupials get enough water to survive","type":"STY"},{"assetId":"51698180","assetUri":"\/newsround\/51698180","firstCreated":"2020-03-02T06:08:00+00:00","headline":"How to wash your hands","language":"en-gb","lastUpdated":"2020-05-05T08:15:53+00:00","media":{"images":{"index":{"111094769":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/179ED\/production\/_111094769_p0859hzb.jpg","originCode":"cpsprodpb","altText":"how to wash your hands.","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"111094771":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4555\/production\/_111094771_p0859hzb.jpg","originCode":"cpsprodpb","altText":"how to wash your hands.","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"51698181":{"caption":"How to wash your hands","entityType":"Clip","externalId":"p0859hdj"}},"primary":{"51698181":{"caption":"How to wash your hands","entityType":"Clip","externalId":"p0859hdj"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"World Hand Hygiene Day: How to wash your hands","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"It's really important to wash your hands to stop the spread of germs. Here's the best way to do it.","type":"MAP"},{"assetId":"52529081","assetUri":"\/newsround\/52529081","firstCreated":"2020-05-04T15:35:12+00:00","hasShortForm":true,"headline":"A mega meteor shower is coming this week","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T15:35:12+00:00","media":{"images":{"index":{"109578059":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1736F\/production\/_109578059_gettyimages-1134061972.jpg","originCode":"cpsprodpb","caption":"A small meteor shower is heading our way!","altText":"meteor showers are like pretty light shows in the sky","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112105564":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B5D6\/production\/_112105564_gettyimages-1134061972.jpg","originCode":"cpsprodpb","caption":"A small meteor shower is heading our way!","altText":"meteor showers are like pretty light shows in the sky","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"There's a massive meteor shower this week which you'll be able to see in parts of the UK.","type":"STY"},{"assetId":"52534775","assetUri":"\/newsround\/52534775","firstCreated":"2020-05-05T06:56:50+00:00","hasShortForm":true,"headline":"Special Operation Ouch answers YOUR coronavirus questions","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T11:38:10+00:00","media":{"images":{"index":{"112152604":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9EB1\/production\/_112152604_operationouch1.jpg","originCode":"cpsprodpb","altText":"dr-xand-operation-ouch.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112154545":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D511\/production\/_112154545_operationouch1.jpg","originCode":"cpsprodpb","altText":"dr-xand-operation-ouch.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"In a special episode Dr Chris, Dr Xand, and Dr Ronx will be answering some of biggest questions kids have had about coronavirus, and we find out how scientists are making a vaccine.","type":"STY"},{"assetId":"52487193","assetUri":"\/newsround\/52487193","firstCreated":"2020-04-30T13:23:44+00:00","headline":"How to take amazing pics of your pet","language":"en-gb","lastUpdated":"2020-05-05T05:42:06+00:00","media":{"images":{"index":{"112048170":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1C10\/production\/_112048170_gettyimages-1076473108.jpg","originCode":"cpsprodpb","altText":"girl taking pet photos","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112047241":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/37C2\/production\/_112047241_p08bwktd.jpg","originCode":"cpsprodpb","altText":"Get Pawfect pet pics with our guide","copyrightHolder":"Do you love snapping pics of your pets to show fam","allowSyndication":false}}},"videos":{"index":{"52529736":{"caption":"Get Paw-fect pet pics with our guide","entityType":"Clip","externalId":"p08c6r31"}},"primary":{"52529736":{"caption":"Get Paw-fect pet pics with our guide","entityType":"Clip","externalId":"p08c6r31"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Get Paw-fect pics with our guide on shooting great pet portraits.","type":"MAP"},{"assetId":"52528725","assetUri":"\/newsround\/52528725","firstCreated":"2020-05-04T12:40:46+00:00","hasShortForm":true,"headline":"New BLACKPINK songs out in June","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T12:43:56+00:00","media":{"images":{"index":{"112102217":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11634\/production\/_112102217_blackpink.jpg","originCode":"cpsprodpb","altText":"blackpink.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112105858":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14F5A\/production\/_112105858_blackpink.jpg","originCode":"cpsprodpb","altText":"blackpink.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Yep the girls are back! BLACKPINK have confirmed a comeback for June 2020.","type":"STY"},{"assetId":"52447570","assetUri":"\/newsround\/52447570","firstCreated":"2020-05-04T05:09:47+00:00","hasShortForm":true,"headline":"Year 6s and P7s: What leavers' events do you have planned?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T05:09:47+00:00","media":{"images":{"index":{"112011553":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8AB7\/production\/_112011553_gettyimages-1048322846.jpg","originCode":"cpsprodpb","altText":"Kids on a bouncy castle.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"You might have planned a prom or a disco - but if lockdown gets in the way of your party plans, what will do you do to celebrate?","type":"STY"},{"assetId":"52529078","assetUri":"\/newsround\/52529078","firstCreated":"2020-05-04T12:23:56+00:00","hasShortForm":true,"headline":"Fancy a PE lesson with Mr. Rashford?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T12:23:56+00:00","media":{"images":{"index":{"112105556":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1000E\/production\/_112105556_gettyimages-1162543444.jpg","originCode":"cpsprodpb","altText":"Marcus Rashford.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112105558":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14E2E\/production\/_112105558_gettyimages-1162543444.jpg","originCode":"cpsprodpb","altText":"Marcus Rashford.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Footballer is putting together a PE lesson for BBC Bitesize and he's asked his fans for advice.","type":"STY"},{"assetId":"52526849","assetUri":"\/newsround\/52526849","firstCreated":"2020-05-04T07:49:46+00:00","hasShortForm":true,"headline":"Nasa and SpaceX team up for US blast off","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T11:55:21+00:00","media":{"images":{"index":{"112101529":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1695E\/production\/_112101529_ba124171-7664-4516-975f-39a51133f85b.jpg","originCode":"cpsprodpb","altText":"dragon-capsule.","copyrightHolder":"NASA","allowSyndication":false}},"index-thumbnail":{"112101533":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/82E6\/production\/_112101533_mediaitem112101530.jpg","originCode":"cpsprodpb","altText":"rocket.","copyrightHolder":"NASA","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"This month will be the first time since 2011 that astronauts have been launched into space from US soil.","type":"STY"},{"assetId":"52530878","assetUri":"\/newsround\/52530878","firstCreated":"2020-05-04T12:14:53+00:00","hasShortForm":true,"headline":"First wild baby wolves for Belgium in 150 years","language":"en-gb","lastUpdated":"2020-05-04T12:43:11+00:00","media":{"images":{"index":{"112104294":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C058\/production\/_112104294_wolf_getty.jpg","originCode":"cpsprodpb","altText":"Wolf","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112104296":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10E78\/production\/_112104296_wolf_getty.jpg","originCode":"cpsprodpb","altText":"Wolf","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Belgium is hoping to soon welcome its first set of wild wolf cubs in more than 100 years.","type":"STY"},{"assetId":"52527526","assetUri":"\/newsround\/52527526","firstCreated":"2020-05-04T06:54:09+00:00","hasShortForm":true,"headline":"Quiz: Which Star Wars character are you?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T07:58:30+00:00","media":{"images":{"index":{"112101706":{"height":444,"width":790,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/ED26\/production\/_112101706_untitled.jpg","originCode":"cpsprodpb","altText":"Which Star Wars character are you?","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112101708":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13B46\/production\/_112101708_untitled.jpg","originCode":"cpsprodpb","altText":"Which Star Wars character are you?","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Have you ever wondered who you'd be if you were in the Star Wars universe? (Yes, you definitely have!) Well now's your chance to find out for sure...","type":"STY"},{"assetId":"48191799","assetUri":"\/newsround\/48191799","firstCreated":"2019-05-07T16:14:07+00:00","hasShortForm":true,"headline":"How YOU can help our spiky friends for Hedgehog Awareness Week","language":"en-gb","lastUpdated":"2020-05-04T06:06:40+00:00","media":{"images":{"index":{"112079157":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/125BD\/production\/_112079157_hedgehogawarenessweek1.jpg","originCode":"cpsprodpb","altText":"Hedgehog","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"106829281":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4774\/production\/_106829281_29ecdeef-01c3-4a54-a3b7-a0e9cb191377.jpg","originCode":"cpsprodpb","altText":"A hedgehog eating from a dish","copyrightHolder":"Gillian day","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"Animals","id":"101224","uri":"\/newsround\/animals","urlIdentifier":"\/newsround\/animals"},"summary":"It's Hedgehog Awareness Week from 3-9 May, and as numbers of the spiky animal are decreasing, we've got some top tips on how you can help them.","type":"STY"},{"assetId":"52532343","assetUri":"\/newsround\/52532343","firstCreated":"2020-05-04T14:53:39+00:00","headline":"Italians play outdoors after seven weeks in lockdown","language":"en-gb","lastUpdated":"2020-05-04T14:53:39+00:00","media":{"images":{"index":{"112106226":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/F334\/production\/_112106226_gettyimages-1211629921.jpg","originCode":"cpsprodpb","altText":"Two boys with masks on a bike on the promenade of Corigliano-Rossano, along the Ionian sea in Calabria, southern Italy.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112106222":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/56F4\/production\/_112106222_gettyimages-1211629921.jpg","originCode":"cpsprodpb","altText":"Two boys with masks on a bike on the promenade of Corigliano-Rossano, along the Ionian sea in Calabria, southern Italy.","copyrightHolder":"Getty Images","allowSyndication":true}}},"videos":{"index":{"52532347":{"caption":"Children in Italy head outdoors for first time as lockdown rules relaxed","entityType":"Clip","externalId":"p08c70hz"}},"primary":{"52532347":{"caption":"Children in Italy head outdoors for first time as lockdown rules relaxed","entityType":"Clip","externalId":"p08c70hz"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Italy has started to relax some its coronavirus restrictions after nearly two months in lockdown.","type":"MAP"},{"assetId":"52527127","assetUri":"\/newsround\/52527127","firstCreated":"2020-05-04T06:49:52+00:00","hasShortForm":true,"headline":"Special coins to remember VE Day","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T10:58:38+00:00","media":{"images":{"index":{"112101713":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7BDE\/production\/_112101713_coinzz.jpg","originCode":"cpsprodpb","altText":"VE coins","copyrightHolder":"Royal Mint","allowSyndication":false}},"index-thumbnail":{"112101715":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C9FE\/production\/_112101715_coinzz.jpg","originCode":"cpsprodpb","altText":"VE coins","copyrightHolder":"Royal Mint","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"The Royal Mint is releasing a set of coins to remember VE Day, which marked the end of the Second World War in Europe.","type":"STY"},{"assetId":"50434875","assetUri":"\/newsround\/50434875","firstCreated":"2019-11-18T06:21:33+00:00","headline":"Happy News","language":"en-gb","lastUpdated":"2020-05-04T05:33:42+00:00","media":{"images":{"index":{"112101058":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14C12\/production\/_112101058_happymay4th.jpg","originCode":"cpsprodpb","altText":"tortoise","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112101060":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/177A\/production\/_112101060_happymay4th.jpg","originCode":"cpsprodpb","altText":"tortoise","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52508949":{"caption":"Happy News","entityType":"Clip","externalId":"p08c0qkh"}},"primary":{"52508949":{"caption":"Happy News","entityType":"Clip","externalId":"p08c0qkh"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"De'Graft has this week's Happy News, including two 100th birthday celebrations and a dolphin rescue.","type":"MAP"},{"assetId":"52508543","assetUri":"\/newsround\/52508543","firstCreated":"2020-05-04T07:11:55+00:00","headline":"We think these teachers are missing their pupils!","language":"en-gb","lastUpdated":"2020-05-04T07:11:55+00:00","media":{"images":{"index":{"112078851":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/3E0F\/production\/_112078851_p08c0m24.jpg","originCode":"cpsprodpb","altText":"teacher-with-kids-laughing-at-computer-screen.","copyrightHolder":"Getty Images","allowSyndication":true}}},"videos":{"index":{"52508544":{"caption":"What do teachers get up to without pupils?","entityType":"Clip","externalId":"p08c0lsc"}},"primary":{"52508544":{"caption":"What do teachers get up to without pupils?","entityType":"Clip","externalId":"p08c0lsc"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"With schools being closed for lots of you right now, have you been wondering what your teachers are up to without you? Check this out!","type":"MAP"},{"assetId":"52354888","assetUri":"\/newsround\/52354888","firstCreated":"2020-04-29T13:55:16+00:00","headline":"Tasty recipes you can try making at home!","language":"en-gb","lastUpdated":"2020-05-03T08:54:38+00:00","media":{"images":{"index":{"112042120":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/084C\/production\/_112042120_befunky-collage.jpg","originCode":"cpsprodpb","altText":"food","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112042122":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/566C\/production\/_112042122_befunky-collage.jpg","originCode":"cpsprodpb","altText":"food","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A lot of you have been spending your spare time cooking so we've tracked down some impressive chefs to help you out with some easy and quick dishes that you can make at home.","type":"STY"},{"assetId":"43245617","assetUri":"\/newsround\/43245617","firstCreated":"2018-03-02T06:46:57+00:00","headline":"Strange News","language":"en-gb","lastUpdated":"2020-05-01T05:32:57+00:00","media":{"images":{"index":{"112028200":{"height":575,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/011A\/production\/_112028200_p08bsxbh.jpg","originCode":"cpsprodpb","altText":"Hologram of a zebra","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"112028202":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4F3A\/production\/_112028202_p08bsxbh.jpg","originCode":"cpsprodpb","altText":"Hologram of a zebra","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52477465":{"caption":"Strange News","entityType":"Clip","externalId":"p08bsx97"}},"primary":{"52477465":{"caption":"Strange News","entityType":"Clip","externalId":"p08bsx97"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/Feature","categoryName":"Feature"}},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"De'Graft has your strangest stories this week. We've got animals on a video chat, more animals on vehicles in Paris and a meteor getting close to Earth!","type":"MAP"},{"assetId":"51318780","assetUri":"\/newsround\/51318780","firstCreated":"2020-01-31T06:52:56+00:00","hasShortForm":true,"headline":"Quiz: Have you been following this week's news?","language":"en-gb","lastUpdated":"2020-05-01T05:33:28+00:00","media":{"images":{"index":{"112049856":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10166\/production\/_112049856_background-1.jpg","originCode":"cpsprodpb","altText":"Quiz of the week","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112049858":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14F86\/production\/_112049858_background-1.jpg","originCode":"cpsprodpb","altText":"Quiz of the week","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Have you been keeping up with the news this week? Test yourself with the Quiz of the Week!","type":"STY"},{"assetId":"52485316","assetUri":"\/newsround\/52485316","firstCreated":"2020-04-30T13:50:47+00:00","headline":"YOUR amazing rainbow pics","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-30T13:50:47+00:00","media":{"images":{"index":{"112013691":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4CAF\/production\/_112013691_yourrainbows.jpg","originCode":"cpsprodpb","altText":"KIDS-WITH-RAINBOWS.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112045904":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9FFA\/production\/_112045904_yourrainbows.jpg","originCode":"cpsprodpb","altText":"KIDS-WITH-RAINBOWS.","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Lots of you have been making rainbows to brighten up your homes and streets - here are some of the pics you've sent us. Can you find your rainbow?","type":"STY"},{"assetId":"52457520","assetUri":"\/newsround\/52457520","firstCreated":"2020-04-28T16:07:59+00:00","headline":"Take on our super Marvel quiz!","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-29T05:29:36+00:00","media":{"images":{"index":{"112015271":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4363\/production\/_112015271_mediaitem112015270.jpg","originCode":"cpsprodpb","altText":"Spider-Man","copyrightHolder":"Marvel Studios \/ Disney","allowSyndication":false}},"index-thumbnail":{"112015333":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8247\/production\/_112015333_mediaitem112015270.jpg","originCode":"cpsprodpb","altText":"Spider-Man","copyrightHolder":"Marvel Studios \/ Disney","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Spider-Man star Tom Holland is set to host a Marvel-themed quiz on Wednesday, but how do you do with ours?","type":"STY"},{"assetId":"23286976","assetUri":"\/newsround\/23286976","firstCreated":"2013-07-12T14:26:50+00:00","headline":"What's it like fasting during Ramadan?","language":"en-gb","lastUpdated":"2020-04-23T05:32:40+00:00","media":{"images":{"index":{"89892170":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1BD9\/production\/_89892170_gettyimages-150481963.jpg","originCode":"cpsprodpb","caption":"Young Muslim girls show their hands decorated with henna after attending prayers on Eid Al-Fitr","altText":"Young Muslim girls show their hands decorated with henna after attending prayers on Eid Al-Fitr","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"106792621":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/3155\/production\/_106792621_gettyimages-150481963.jpg","originCode":"cpsprodpb","caption":"Young Muslim girls show their hands decorated with henna after attending prayers on Eid Al-Fitr","altText":"Young Muslim girls show their hands decorated with henna after attending prayers on Eid Al-Fitr","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Muslims around the world will be observing the month of Ramadan. Find out more about the religious festival.","type":"STY"}],"semanticGroupName":"More stories 1"},{"type":"responsive-cluster","title":"Slice 2 - Dark purple with pink index card","strapline":{"name":"Coronavirus"},"items":[{"assetId":"51204456","assetUri":"\/newsround\/51204456","firstCreated":"2020-01-22T10:09:43+00:00","headline":"Coronavirus: What is being done to tackle the virus?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-06T08:18:04+00:00","media":{"images":{"index":{"112107463":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8E76\/production\/_112107463_thumbnail.jpg","originCode":"cpsprodpb","altText":"NHS in a rainbow heart","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112107469":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/178D6\/production\/_112107469_thumbnail.jpg","originCode":"cpsprodpb","altText":"NHS in a rainbow heart","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Schools have closed, people have been told to stay at home and scientists and governments are working hard to stop the spread of the coronavirus and find a vaccine. Here's the latest on what's being done about it.","type":"STY"},{"assetId":"52534777","assetUri":"\/newsround\/52534777","firstCreated":"2020-05-05T06:14:34+00:00","headline":"Top tips of what to do in lockdown from Operation Ouch!","language":"en-gb","lastUpdated":"2020-05-05T06:14:34+00:00","media":{"images":{"index":{"112110789":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1818D\/production\/_112110789_p08c7fgw.jpg","originCode":"cpsprodpb","altText":"dr-ronx.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52534778":{"caption":"Top tips of what to do in lockdown from Operation Ouch!","entityType":"Clip","externalId":"p08c7dt2"}},"primary":{"52534778":{"caption":"Top tips of what to do in lockdown from Operation Ouch!","entityType":"Clip","externalId":"p08c7dt2"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Dr Chris, Dr Xand, and Dr Ronx have lots of really good suggestions to keep you busy during lockdown.","type":"MAP"},{"assetId":"51877454","assetUri":"\/newsround\/51877454","firstCreated":"2020-03-15T14:52:43+00:00","hasShortForm":true,"headline":"Frequently asked questions about coronavirus","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-08T13:36:28+00:00","media":{"images":{"index":{"111717777":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/12FCB\/production\/_111717777_3_nrcor_tom7.jpg","originCode":"cpsprodpb","altText":"coronavirus","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"We've put some of the most frequently asked questions about coronavirus into a handy guide.","type":"STY"},{"assetId":"51312911","assetUri":"\/newsround\/51312911","firstCreated":"2020-01-31T14:45:46+00:00","headline":"Coronavirus: How do vaccines work?","language":"en-gb","lastUpdated":"2020-05-05T06:40:41+00:00","media":{"images":{"index":{"111976781":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/494F\/production\/_111976781_mediaitem111976780.jpg","originCode":"cpsprodpb","altText":"A small bottle labeled with a \"Vaccine\" sticker is held near a medical syringe","copyrightHolder":"Reuters","allowSyndication":true}},"index-thumbnail":{"111977483":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/964D\/production\/_111977483_mediaitem111976780.jpg","originCode":"cpsprodpb","altText":"A small bottle labeled with a \"Vaccine\" sticker is held near a medical syringe","copyrightHolder":"Reuters","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Read this Newsround guide to find out more about vaccines and how long it could take to create one for coronavirus.","type":"STY"},{"assetId":"52393241","assetUri":"\/newsround\/52393241","firstCreated":"2020-04-23T09:13:20+00:00","hasShortForm":true,"headline":"What do we know about when schools will re-open?","language":"en-gb","lastUpdated":"2020-05-06T08:07:57+00:00","media":{"images":{"index":{"111915000":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/0033\/production\/_111915000_gettyimages-911029638.jpg","originCode":"cpsprodpb","altText":"girls at school","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111914999":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/18665\/production\/_111914999_gettyimages-911029638.jpg","originCode":"cpsprodpb","altText":"girls at school","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Schools in the UK are closed to everyone except vulnerable children and pupils whose parents are key workers but when could they reopen?","type":"STY"},{"assetId":"52467760","assetUri":"\/newsround\/52467760","firstCreated":"2020-04-29T08:23:46+00:00","hasShortForm":true,"headline":"What are different countries doing about wearing masks at school?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T08:28:18+00:00","media":{"images":{"index":{"112018087":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13101\/production\/_112018087_gettyimages-170474250.jpg","originCode":"cpsprodpb","caption":"Secondary school children in France will return to school soon and will have to wear masks in class","altText":"masks-france.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112018029":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/167B1\/production\/_112018029_gettyimages-1210464497.jpg","originCode":"cpsprodpb","altText":"paris-mask.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"France will make wearing a mask compulsory in secondary schools when it eases lockdown measures soon. So what are some other countries around the world doing about wearing masks in class?","type":"STY"},{"assetId":"51887051","assetUri":"\/newsround\/51887051","firstCreated":"2020-03-14T12:32:34+00:00","headline":"Advice if you're worried about the coronavirus","language":"en-gb","lastUpdated":"2020-04-08T14:59:42+00:00","media":{"images":{"index":{"111703295":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E75E\/production\/_111703295_p0890dfw.jpg","originCode":"cpsprodpb","altText":"Keyframe #6","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"111260039":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/16B4E\/production\/_111260039_advice.jpg","originCode":"cpsprodpb","altText":"text-advice-if-you're-worried-about-the-coronavirus.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52220253":{"caption":"Coronavirus: Advice if you're worried about it","entityType":"Clip","externalId":"p0890c9z"}},"primary":{"52220253":{"caption":"Coronavirus: Advice if you're worried about it","entityType":"Clip","externalId":"p0890c9z"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Psychologist Laverne Antrobus has some tips if you're feeling worried or anxious about the coronavirus.","type":"MAP"},{"assetId":"52538074","assetUri":"\/newsround\/52538074","firstCreated":"2020-05-05T06:48:01+00:00","headline":"Watch Dr Xand鈥檚 coronavirus video diary","language":"en-gb","lastUpdated":"2020-05-05T06:48:01+00:00","media":{"images":{"index":{"112110964":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B735\/production\/_112110964_p08c7fxt.jpg","originCode":"cpsprodpb","altText":"dr-xand.","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52538076":{"caption":"Operation Ouch!: Dr Xand鈥檚 coronavirus video diary","entityType":"Clip","externalId":"p08c7fkw"}},"primary":{"52538076":{"caption":"Operation Ouch!: Dr Xand鈥檚 coronavirus video diary","entityType":"Clip","externalId":"p08c7fkw"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Dr Xand from CBBC's Operation Ouch! tells us how he felt each day he was ill and how after he started to get better.","type":"MAP"},{"assetId":"52227592","assetUri":"\/newsround\/52227592","firstCreated":"2020-04-12T10:44:00+00:00","headline":"100 activity ideas you do indoors during lockdown","language":"en-gb","lastUpdated":"2020-04-12T10:44:19+00:00","media":{"images":{"index":{"111718196":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10E3D\/production\/_111718196_p0892v48.jpg","originCode":"cpsprodpb","altText":"Child-in-kitchen.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111763087":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/130D4\/production\/_111763087_p0892v48.jpg","originCode":"cpsprodpb","altText":"Child-in-kitchen.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52230909":{"caption":"100 activity ideas you do indoors during lockdown","entityType":"Clip","externalId":"p0892r84"}},"primary":{"52230909":{"caption":"100 activity ideas you do indoors during lockdown","entityType":"Clip","externalId":"p0892r84"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"100 activity ideas you can do indoors during lockdown","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Scouts have put together a big list of fun activities for you to do when you're at home looking for inspiration.","type":"MAP"},{"assetId":"52200989","assetUri":"\/newsround\/52200989","firstCreated":"2020-04-08T14:45:32+00:00","hasShortForm":true,"headline":"Coronavirus: What's the latest advice about masks?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T15:07:41+00:00","media":{"images":{"index":{"111877329":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/168D9\/production\/_111877329_coronavirusmasks.jpg","originCode":"cpsprodpb","altText":"coronavirus-masks.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111877331":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/3441\/production\/_111877331_coronavirusmasks.jpg","originCode":"cpsprodpb","altText":"coronavirus-masks.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"You might have seen lots of people wearing masks and wondering whether you should be wearing one too. Here's the latest guidance and advice.","type":"STY"},{"assetId":"52300064","assetUri":"\/newsround\/52300064","firstCreated":"2020-04-22T05:43:08+00:00","headline":"Coronavirus: Key workers' children still at school","language":"en-gb","lastUpdated":"2020-04-22T05:43:08+00:00","media":{"images":{"index":{"111820422":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/5782\/production\/_111820422_nrkeykids1.jpg","originCode":"cpsprodpb","altText":"key-worker-graphic","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52300065":{"caption":"Children who are still at school told us how they had to sit at separate desks because of social distancing rules","entityType":"Clip","externalId":"p089kmbz"}},"primary":{"52300065":{"caption":"Children who are still at school told us how they had to sit at separate desks because of social distancing rules","entityType":"Clip","externalId":"p089kmbz"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Coronavirus: The key workers' children still at school","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Lots of you are staying home with your families at the moment, but what about those of you with parents or guardians who are key workers and still have to go to school?","type":"MAP"},{"assetId":"52351553","assetUri":"\/newsround\/52351553","firstCreated":"2020-04-22T07:40:43+00:00","hasShortForm":true,"headline":"Could dogs be used to test people for coronavirus?","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-22T07:40:43+00:00","media":{"images":{"index":{"111870211":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2BC7\/production\/_111870211_supersix.jpg","originCode":"cpsprodpb","caption":"Meet the six dogs who could be put to work testing for coronavirus","altText":"Composite-of-6-dogs.","copyrightHolder":"Medical Detection Dogs ","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Scientists think specially trained dogs may be able to tell if someone has the virus based on their smell.","type":"STY"},{"assetId":"52280887","assetUri":"\/newsround\/52280887","firstCreated":"2020-04-14T12:50:55+00:00","hasShortForm":true,"headline":"Everything you need to know about PPE","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-18T09:15:53+00:00","media":{"images":{"index":{"111780980":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/22CC\/production\/_111780980_gettyimages-1208003898.jpg","originCode":"cpsprodpb","altText":"mask-gloves-hospital.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111780982":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/70EC\/production\/_111780982_gettyimages-1208003898.jpg","originCode":"cpsprodpb","altText":"mask-gloves-hospital.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"What is PPE & why is it in the news?","passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"What is PPE, why is it important, and why are people talking about it?","type":"STY"},{"assetId":"52292291","assetUri":"\/newsround\/52292291","firstCreated":"2020-04-15T11:52:25+00:00","hasShortForm":true,"headline":"Who is WHO? What does the World Health Organization do?","language":"en-gb","lastUpdated":"2020-04-15T11:52:25+00:00","media":{"images":{"index":{"111791578":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/155DF\/production\/_111791578_trumpgetty.jpg","originCode":"cpsprodpb","altText":"Donald Trump","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111791580":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2147\/production\/_111791580_trumpgetty.jpg","originCode":"cpsprodpb","altText":"Donald Trump","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"What is the World Health Organization, known as the WHO, and why is Donald Trump angry at them?","type":"STY"},{"assetId":"52357183","assetUri":"\/newsround\/52357183","firstCreated":"2020-04-21T10:28:41+00:00","headline":"Dr Ranj answers kids' questions about coronavirus","language":"en-gb","lastUpdated":"2020-04-21T10:28:41+00:00","media":{"images":{"index":{"111871388":{"height":575,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/158FD\/production\/_111871388_p08b29ym.jpg","originCode":"cpsprodpb","altText":"dr ranj","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"111870015":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C73F\/production\/_111870015_drranj.jpg","originCode":"cpsprodpb","altText":"Dr ranj","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52357185":{"caption":"Coronavirus: Dr Ranj answers kids' questions","entityType":"Clip","externalId":"p08b05zh"}},"primary":{"52357185":{"caption":"Coronavirus: Dr Ranj answers kids' questions","entityType":"Clip","externalId":"p08b05zh"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"We know you guys have got loads of questions about coronavirus and about how we're living right now, so here's doctor and Strictly star Ranj Singh to answer some of them","type":"MAP"},{"assetId":"52314760","assetUri":"\/newsround\/52314760","firstCreated":"2020-04-17T05:17:53+00:00","headline":"Paul & Freddy's mental health top tips","language":"en-gb","lastUpdated":"2020-04-17T08:44:00+00:00","media":{"images":{"index":{"111831380":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2079\/production\/_111831380_p089r79z.jpg","originCode":"cpsprodpb","altText":"paul-and-freddy.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111831382":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6E99\/production\/_111831382_p089r79z.jpg","originCode":"cpsprodpb","altText":"paul-and-freddy.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52323804":{"caption":"Paul & Freddy's mental health top tips","entityType":"Clip","externalId":"p089r71f"}},"primary":{"52323804":{"caption":"Paul & Freddy's mental health top tips","entityType":"Clip","externalId":"p089r71f"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround spoke to mental health coach Paul and his son Freddy, they do lots of work around mental health and have got some top tips to help you stay positive!","type":"MAP"},{"assetId":"52216267","assetUri":"\/newsround\/52216267","firstCreated":"2020-04-08T17:24:08+00:00","hasShortForm":true,"headline":"How to enjoy the outdoors...when you're stuck inside!","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-08T17:24:08+00:00","media":{"images":{"index":{"111717735":{"height":751,"width":1335,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D20B\/production\/_111717735_gettyimages-1031664628.jpg","originCode":"cpsprodpb","altText":"open window","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111717737":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1202B\/production\/_111717737_gettyimages-1031664628.jpg","originCode":"cpsprodpb","altText":"open window","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Nature and being outside is good for our bodies and our minds, so it can be tough when we're stuck inside. Here are some activities that make the most of the great outdoors, but don't have to involve leaving the house!","type":"STY"},{"assetId":"52254282","assetUri":"\/newsround\/52254282","firstCreated":"2020-04-15T07:48:02+00:00","hasShortForm":true,"headline":"Tips for celebrating your birthday during lockdown","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-15T07:48:02+00:00","media":{"images":{"index":{"111757745":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D5F7\/production\/_111757745_gettyimages-1213912191.jpg","originCode":"cpsprodpb","altText":"girl-celebrating-birthday-with-friends-via-video-chat","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Let us know what you have done to celebrate your birthday at home.","type":"STY"},{"assetId":"52214311","assetUri":"\/newsround\/52214311","firstCreated":"2020-04-14T06:07:49+00:00","headline":"Worship during the Coronavirus","language":"en-gb","lastUpdated":"2020-04-14T06:07:49+00:00","media":{"images":{"index":{"111718193":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/990D\/production\/_111718193_p0892rv3.jpg","originCode":"cpsprodpb","altText":"Keyframe #1","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52230908":{"caption":"Worship during the Coronavirus","entityType":"Clip","externalId":"p0892rh2"}},"primary":{"52230908":{"caption":"Worship during the Coronavirus","entityType":"Clip","externalId":"p0892rh2"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Due to the current social distancing measures, going out to your local church or synagogue isn't really allowed. However, some people are finding new ways to practice their faith at home.","type":"MAP"},{"assetId":"52096366","assetUri":"\/newsround\/52096366","firstCreated":"2020-04-02T05:13:53+00:00","headline":"How to spot fake virus news","language":"en-gb","lastUpdated":"2020-04-03T08:03:29+00:00","media":{"images":{"index":{"111550544":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/ADD9\/production\/_111550544_gettyimages-1195910993.jpg","originCode":"cpsprodpb","caption":"Fake news about the coronavirus is spreading on the internet. But how can we spot it?","altText":"hand-holding-a-phone-with-fake-news-on-the-screen-other-hand-about-to-press-share-on-the-screen","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111483841":{"height":1900,"width":2800,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/39F6\/production\/_111483841_gettyimages-1195910993.jpg","originCode":"cpsprodpb","caption":"Fake news about the coronavirus is spreading on the internet. But how can we spot it?","altText":"hand-holding-a-phone-with-fake-news-on-the-screen-other-hand-about-to-press-share-on-the-screen","copyrightHolder":"Getty Images","allowSyndication":true}}},"videos":{"index":{"52149262":{"caption":"Coronavirus: How to spot fake news","entityType":"Clip","externalId":"p088jx6v"}},"primary":{"52149262":{"caption":"Coronavirus: How to spot fake news","entityType":"Clip","externalId":"p088jx6v"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Fake news or misinformation about the coronavirus is spreading on the internet. Marianna Spring, a disinformation reporter at the BBC, tells us how we can spot it.","type":"MAP"},{"assetId":"52156671","assetUri":"\/newsround\/52156671","firstCreated":"2020-04-03T14:46:21+00:00","hasShortForm":true,"headline":"Worried about coronavirus? The BBC Own It app can help","language":"en-gb","lastUpdated":"2020-04-03T14:46:21+00:00","media":{"images":{"index":{"111607524":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A64A\/production\/_111607524_gettyimages-619269222.jpg","originCode":"cpsprodpb","altText":"child-on-phone.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111607526":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/F46A\/production\/_111607526_gettyimages-619269222.jpg","originCode":"cpsprodpb","altText":"child-on-phone.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Own It keyboard can now recognise language related to coronavirus and provide advice to support users who may have fears or worries about it.","type":"STY"},{"assetId":"52018134","assetUri":"\/newsround\/52018134","firstCreated":"2020-03-24T14:21:10+00:00","hasShortForm":true,"headline":"How to BOSS being stuck at home!","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-25T06:28:57+00:00","media":{"images":{"index":{"111404617":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/117D8\/production\/_111404617_title_-still_00078.png","originCode":"cpsprodpb","altText":"title-card","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111404619":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/165F8\/production\/_111404619_title_-still_00078.png","originCode":"cpsprodpb","altText":"title-card","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"So you're stuck at home - here are some expert tips on looking after yourself","type":"STY"},{"assetId":"51989370","assetUri":"\/newsround\/51989370","firstCreated":"2020-03-23T14:08:29+00:00","headline":"Social distancing explained - with dominoes","language":"en-gb","lastUpdated":"2020-03-29T13:38:07+00:00","media":{"images":{"index":{"111381876":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/108EA\/production\/_111381876_p0878y4y.jpg","originCode":"cpsprodpb","altText":"Domino","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111381878":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1570A\/production\/_111381878_p0878y4y.jpg","originCode":"cpsprodpb","altText":"Domino","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51989371":{"caption":"Dominoes show how social distancing can help","entityType":"Clip","externalId":"p0878wwm"}},"primary":{"51989371":{"caption":"Dominoes show how social distancing can help","entityType":"Clip","externalId":"p0878wwm"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Wondering how social distancing protects people from the coronavirus? Martin explains with help from his domino set.","type":"MAP"},{"assetId":"51959552","assetUri":"\/newsround\/51959552","firstCreated":"2020-03-19T12:42:29+00:00","headline":"Advice on looking after pets during Coronavirus","language":"en-gb","lastUpdated":"2020-03-23T11:34:02+00:00","media":{"images":{"index":{"111350689":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1812D\/production\/_111350689_p0871sr2.jpg","originCode":"cpsprodpb","altText":"DR James and his dog Oliver","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111352492":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/72F1\/production\/_111352492_p0871sr2.jpg","originCode":"cpsprodpb","altText":"DR James and his dog Oliver","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51959553":{"caption":"Coronavirus: How to keep pets safe","entityType":"Clip","externalId":"p0871sl2"}},"primary":{"51959553":{"caption":"Coronavirus: How to keep pets safe","entityType":"Clip","externalId":"p0871sl2"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Dr James and dog, Oliver from The Pets Factor tell us how to keep your pet safe during Coronavirus","type":"MAP"},{"assetId":"51626137","assetUri":"\/newsround\/51626137","firstCreated":"2020-02-25T14:17:10+00:00","headline":"Coronavirus is a 'pandemic'. But what does that mean?","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-11T16:52:29+00:00","media":{"images":{"index":{"111027204":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9D50\/production\/_111027204_gettyimages-1202707966.jpg","originCode":"cpsprodpb","altText":"people-wearing-masks.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111028699":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/18562\/production\/_111028699_gettyimages-1202707966.jpg","originCode":"cpsprodpb","altText":"people-wearing-masks.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"The World Health Organization has officially declared coronavirus is now a pandemic - but that does that mean and what happens if a pandemic is declared?","type":"STY"}],"semanticGroupName":"More stories 2"},{"type":"responsive-cluster","title":"Slice 3 - White with bright purple index card","strapline":{"name":"Climate change"},"items":[{"assetId":"51644659","assetUri":"\/newsround\/51644659","firstCreated":"2020-03-03T06:07:40+00:00","headline":"Five tips if you're feeling worried about climate change","language":"en-gb","lastUpdated":"2020-03-03T06:41:35+00:00","media":{"images":{"index":{"111122470":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1CFE\/production\/_111122470_laverne_antrobus.jpg","originCode":"cpsprodpb","altText":"Laverne antrobus tips","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111122471":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/440E\/production\/_111122471_laverne_introbus2.jpg","originCode":"cpsprodpb","altText":"Laverne antrobus tips","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51644784":{"caption":"Climate Anxiety: Five tips to deal with your worries about climate change","entityType":"Clip","externalId":"p084t5bv"}},"primary":{"51644784":{"caption":"Climate Anxiety: Five tips to deal with your worries about climate change","entityType":"Clip","externalId":"p084t5bv"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Psychologist Laverne Antrobus has some advice if thinking about the environment is getting you down.","type":"MAP"},{"assetId":"52410744","assetUri":"\/newsround\/52410744","firstCreated":"2020-04-26T14:26:12+00:00","hasShortForm":true,"headline":"Australia: Life after the bushfires","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-28T05:30:00+00:00","media":{"images":{"index":{"111977016":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/EE95\/production\/_111977016_titlepage_still_00513.jpg","originCode":"cpsprodpb","altText":"Koala-and-firefighter-title-page.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111977015":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C785\/production\/_111977015_titlepage_still_00513.jpg","originCode":"cpsprodpb","altText":"Koala-and-firefighter-title-page.","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Australia experienced the worst bushfire season ever in 2019-2020 with fires blazing for months in large parts of the country. So what was it like living near them? We've been to find out.","type":"STY"},{"assetId":"51388287","assetUri":"\/newsround\/51388287","byline":{"name":"By Vicki Roberts","persons":[{"name":"Vicki Roberts","function":"Newsround","originCode":"MCS"}],"title":"Newsround"},"firstCreated":"2020-04-22T05:45:16+00:00","hasShortForm":true,"headline":"Five epic inventions fighting climate change","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-22T05:45:16+00:00","media":{"images":{"index":{"111371873":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/93B9\/production\/_111371873_gettyimages-1097731282.jpg","originCode":"cpsprodpb","altText":"climate-change-renewable-energy-graphic.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111371875":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E1D9\/production\/_111371875_gettyimages-1097731282.jpg","originCode":"cpsprodpb","altText":"climate-change-renewable-energy-graphic.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"From carbon vacuums to kinetic pavements - check out these awesome inventions fighting climate change.","type":"STY"},{"assetId":"52132683","assetUri":"\/newsround\/52132683","firstCreated":"2020-04-02T08:39:56+00:00","hasShortForm":true,"headline":"Hope for ocean recovery by 2050","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-02T09:15:16+00:00","media":{"images":{"index":{"111517029":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/167A7\/production\/_111517029_gettyimages-506014770.jpg","originCode":"cpsprodpb","altText":"Whale","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111517028":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14097\/production\/_111517028_gettyimages-506014770.jpg","originCode":"cpsprodpb","altText":"Whale","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A \"substantial\" recovery of life in the oceans could be achieved by 2050 if major threats such as climate change are dealt with, according to scientists.","type":"STY"},{"assetId":"52160277","assetUri":"\/newsround\/52160277","firstCreated":"2020-04-15T07:54:48+00:00","headline":"The schools fighting to save energy","language":"en-gb","lastUpdated":"2020-04-15T07:54:48+00:00","media":{"images":{"index":{"111719144":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/AC9F\/production\/_111719144_p0892mcd.jpg","originCode":"cpsprodpb","altText":"Energy sparks.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111610297":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13561\/production\/_111610297_p088lyx5.jpg","originCode":"cpsprodpb","altText":"energy-sparks","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52160278":{"caption":"The schools fighting to save energy","entityType":"Clip","externalId":"p088ly3m"}},"primary":{"52160278":{"caption":"The schools fighting to save energy","entityType":"Clip","externalId":"p088ly3m"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Schools around the country are taking part in a scheme to save energy. We've been to two schools in Bath who are taking this battle seriously!","type":"MAP"},{"assetId":"51678449","assetUri":"\/newsround\/51678449","firstCreated":"2020-03-03T06:16:18+00:00","hasShortForm":true,"headline":"How worried are YOU about the environment? Try Newsround's survey","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-03T06:16:18+00:00","media":{"images":{"index":{"111104120":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/085C\/production\/_111104120_gettyimages-165611479.jpg","originCode":"cpsprodpb","altText":"hand","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111104122":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/567C\/production\/_111104122_gettyimages-165611479.jpg","originCode":"cpsprodpb","altText":"hand","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Find out the results of Newsround's survey on climate anxiety and try it yourself.","type":"STY"},{"assetId":"51451737","assetUri":"\/newsround\/51451737","firstCreated":"2020-03-03T06:12:05+00:00","hasShortForm":true,"headline":"Is climate change giving you nightmares?","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-03T06:12:05+00:00","media":{"images":{"index":{"111076119":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1641F\/production\/_111076119_nranxiety_00111.jpg","originCode":"cpsprodpb","altText":"girl stressed by the environment","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111076121":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2F87\/production\/_111076121_nranxiety_00111.jpg","originCode":"cpsprodpb","altText":"girl stressed by the environment","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Exclusive survey for BBC Newsround on climate anxiety shows young people losing sleep over climate change and lacking trust that adults will fix it.","type":"STY"},{"assetId":"51634984","assetUri":"\/newsround\/51634984","firstCreated":"2020-02-28T06:27:53+00:00","headline":"'The world of sport isn't doing enough for the environment'","language":"en-gb","lastUpdated":"2020-02-28T06:27:53+00:00","media":{"images":{"index":{"111081053":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/88CA\/production\/_111081053_football.jpg","originCode":"cpsprodpb","altText":"Football with green paint streak","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111081055":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D6EA\/production\/_111081055_football.jpg","originCode":"cpsprodpb","altText":"Football with green paint streak","copyrightHolder":"Getty Images","allowSyndication":true}}},"videos":{"index":{"51658404":{"caption":"FIFA called Forest Green Rovers the greenest club in the world, we take a look at why!","entityType":"Clip","externalId":"p084vn12"}},"primary":{"51658404":{"caption":"FIFA called Forest Green Rovers the greenest club in the world, we take a look at why!","entityType":"Clip","externalId":"p084vn12"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"'Football isn't doing enough for the environment'","overtypedSummary":"FIFA called Forest Green Rovers the greenest club in the world, we take a look at what it is doing to combat climate change. ","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"FIFA called Forest Green Rovers the greenest club in the world, we take a look at why","type":"MAP"},{"assetId":"51678157","assetUri":"\/newsround\/51678157","firstCreated":"2020-02-28T16:44:35+00:00","headline":"Greta's Bristol climate protest in pictures","language":"en-gb","lastUpdated":"2020-02-29T07:23:53+00:00","media":{"images":{"index":{"111078709":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/162A3\/production\/_111078709_3cd7855c-c896-46e7-8e38-351940cf96f0.jpg","originCode":"cpsprodpb","caption":"Greta made a passionate speech in Bristol before leading the Fridays For Future march","altText":"Greta-Thunberg-in-Bristol","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Greta Thunberg joined thousands of young people for a climate strike in Bristol. The environmental campaigner said it was up to children \"to be the adults in the room\" so they could act to combat climate change.","type":"PGL"},{"assetId":"51358462","assetUri":"\/newsround\/51358462","firstCreated":"2020-02-04T07:05:30+00:00","hasShortForm":true,"headline":"'Greta effect' sees young people making voices heard online","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-04T07:05:30+00:00","media":{"images":{"index":{"110773188":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/15849\/production\/_110773188_gretathunberg3.jpg","originCode":"cpsprodpb","altText":"Greta-Thunberg.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"110773190":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/23B1\/production\/_110773190_gretathunberg3.jpg","originCode":"cpsprodpb","altText":"Greta-Thunberg.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A new report looking at young people's online and TV habits says the 'Greta effect' has led to more children using the internet and social media to campaign for change.","type":"STY"},{"assetId":"51218555","assetUri":"\/newsround\/51218555","firstCreated":"2020-01-23T11:57:04+00:00","hasShortForm":true,"headline":"Experts suggest FIVE ways the UK can fight climate change","includeComments":true,"language":"en-gb","lastUpdated":"2020-01-24T06:25:30+00:00","media":{"images":{"index":{"110616427":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11B0D\/production\/_110616427_willow-being-grown-for-bio-fuel.jpg","originCode":"cpsprodpb","altText":"willow-being-grown-for-bio-fuel.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"110629727":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11C58\/production\/_110629727_willow-being-grown-for-bio-fuel.jpg","originCode":"cpsprodpb","altText":"willow-being-grown-for-bio-fuel.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A report from the government's official advisors on climate change says people should eat less meat and flying should cost more.","type":"STY"},{"assetId":"51049866","assetUri":"\/newsround\/51049866","firstCreated":"2020-01-10T07:38:11+00:00","hasShortForm":true,"headline":"Five big climate issues affecting Africa","includeComments":true,"language":"en-gb","lastUpdated":"2020-01-10T07:38:11+00:00","media":{"images":{"index":{"110451305":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C48B\/production\/_110451305_gettyimages-1132130918.jpg","originCode":"cpsprodpb","caption":"Cyclone Idai hit Mozambique in March 2019","altText":"flooding-in-mozambique.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"110458274":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B8B5\/production\/_110458274_gettyimages-1132130918.jpg","originCode":"cpsprodpb","caption":"Cyclone Idai hit Mozambique in March 2019","altText":"flooding-in-mozambique.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Climate change is an issue impacting many countries right across the world, including many in Africa. Here are some of the biggest issues affecting the continent.","type":"STY"},{"assetId":"50650795","assetUri":"\/newsround\/50650795","firstCreated":"2019-12-03T16:17:29+00:00","headline":"Greta: 'People are underestimating the force of angry kids!'","language":"en-gb","lastUpdated":"2019-12-04T06:25:52+00:00","media":{"images":{"index":{"109997375":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E023\/production\/_109997375_gettyimages-1186266775-1.jpg","originCode":"cpsprodpb","altText":"greta","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"109992315":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/C881\/production\/_109992315_p07wsff5.jpg","originCode":"cpsprodpb","altText":"greta","copyrightHolder":"Reuters","allowSyndication":false}}},"videos":{"index":{"50650796":{"caption":"Greta Thunberg: Climate activist speaks as she arrives in Europe for COP25","entityType":"Clip","externalId":"p07ws94x"}},"primary":{"50650796":{"caption":"Greta Thunberg: Climate activist speaks as she arrives in Europe for COP25","entityType":"Clip","externalId":"p07ws94x"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Greta Thunberg has arrived in Portugal ahead of her visit to a big climate meeting. Listen to what she had to say.","type":"MAP"},{"assetId":"50328797","assetUri":"\/newsround\/50328797","firstCreated":"2019-11-07T09:05:30+00:00","hasShortForm":true,"headline":"'Climate strike' is the Word of the Year","includeComments":true,"language":"en-gb","lastUpdated":"2019-11-07T09:05:30+00:00","media":{"images":{"index":{"109560770":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1E1A\/production\/_109560770_gettyimages-1130736511.jpg","originCode":"cpsprodpb","altText":"two-girls.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"109561364":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/B4EC\/production\/_109561364_gettyimages-1130736511.jpg","originCode":"cpsprodpb","altText":"two-girls.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The term tops the Collins Dictionary shortlist for 2019. It's after activists like Greta Thunberg have inspired protests across the world calling for action on climate change.","type":"STY"},{"assetId":"49793156","assetUri":"\/newsround\/49793156","firstCreated":"2019-09-23T05:23:13+00:00","hasShortForm":true,"headline":"Climate Change Quiz: How green are you?","includeComments":true,"language":"en-gb","lastUpdated":"2019-09-23T05:52:02+00:00","media":{"images":{"index":{"108908979":{"height":372,"width":661,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/17EBC\/production\/_108908979_aaauntitled.jpg","originCode":"cpsprodpb","altText":"eco-superhero","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"108908981":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4A24\/production\/_108908981_aaauntitled.jpg","originCode":"cpsprodpb","altText":"eco-superhero","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Take our quiz to work out how eco-friendly you try to be in your daily life","type":"STY"}],"semanticGroupName":"More stories 3"},{"type":"responsive-cluster","title":"Slice 4 - Dark purple with pink index card","strapline":{"name":"Gaming"},"items":[{"assetId":"52456575","assetUri":"\/newsround\/52456575","firstCreated":"2020-04-29T05:36:08+00:00","hasShortForm":true,"headline":"How coding detectives dig out gaming secrets","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-29T05:37:48+00:00","media":{"images":{"index":{"112011773":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/934F\/production\/_112011773_mining.jpg","originCode":"cpsprodpb","altText":"data-mining.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112011775":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E16F\/production\/_112011775_mining.jpg","originCode":"cpsprodpb","altText":"data-mining.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"What is data mining and how do people find out about new gaming updates?","type":"STY"},{"assetId":"52230222","assetUri":"\/newsround\/52230222","firstCreated":"2020-04-14T13:01:54+00:00","hasShortForm":true,"headline":"Gaming top tips: Fifa 20","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-14T13:01:54+00:00","media":{"images":{"index":{"111724551":{"height":1056,"width":1877,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/3CB6\/production\/_111724551_fifa20.jpg","originCode":"cpsprodpb","altText":"Jadon-Sancho-FIFA20.","copyrightHolder":"EA Sports","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Some hints, tips and tricks to help you reach the next level on Fifa 20.","type":"STY"},{"assetId":"52136993","assetUri":"\/newsround\/52136993","firstCreated":"2020-04-08T12:52:18+00:00","hasShortForm":true,"headline":"Gaming top tips: Fortnite","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-08T12:52:18+00:00","media":{"images":{"index":{"111526228":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14156\/production\/_111526228_season22motage.jpg","originCode":"cpsprodpb","altText":"fortnite-chapter-2-season-2.","copyrightHolder":"EPic Games","allowSyndication":false}},"index-thumbnail":{"111526230":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/0CBE\/production\/_111526230_season22motage.jpg","originCode":"cpsprodpb","altText":"fortnite-chapter-2-season-2.","copyrightHolder":"EPic Games","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"If you're a fan of Fortnite, then these top tips could help you out!","type":"STY"},{"assetId":"52105524","assetUri":"\/newsround\/52105524","firstCreated":"2020-04-08T11:17:17+00:00","hasShortForm":true,"headline":"Gaming top tips: Animal Crossing","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-08T11:17:17+00:00","media":{"images":{"index":{"111497891":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4DA7\/production\/_111497891_mediaitem111497890.jpg","originCode":"cpsprodpb","altText":"animal-crossing.","copyrightHolder":"ANimal Crossing\/Nintendo","allowSyndication":false}},"index-thumbnail":{"111497893":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9BC7\/production\/_111497893_mediaitem111497890.jpg","originCode":"cpsprodpb","altText":"animal-crossing.","copyrightHolder":"ANimal Crossing\/Nintendo","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"If you've been playing Animal Crossing, here are some top tips that could help you out!","type":"STY"},{"assetId":"52118980","assetUri":"\/newsround\/52118980","firstCreated":"2020-04-08T11:26:34+00:00","hasShortForm":true,"headline":"Gaming top tips: Minecraft","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-08T11:26:34+00:00","media":{"images":{"index":{"111525792":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7438\/production\/_111525792_minecraft_horizontal_key_art.jpg","originCode":"cpsprodpb","altText":"minecraft.","copyrightHolder":"Minecraft\/Mojang\/Microsoft","allowSyndication":false}},"index-thumbnail":{"111526225":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/CC26\/production\/_111526225_minecraft_horizontal_key_art.jpg","originCode":"cpsprodpb","altText":"minecraft.","copyrightHolder":"Minecraft\/Mojang\/Microsoft","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"If you love Minecraft then we've got some top tips you might not have heard of to try out!","type":"STY"},{"assetId":"51962151","assetUri":"\/newsround\/51962151","firstCreated":"2020-03-19T16:51:27+00:00","hasShortForm":true,"headline":"Animal Crossing New Horizons is out! Here's all you need to know","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-20T06:48:08+00:00","media":{"images":{"index":{"111362712":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/54DE\/production\/_111362712_mediaitem111362711.jpg","originCode":"cpsprodpb","altText":"animal-crossing-tent.","copyrightHolder":"Nintendo\/Animal Crossing","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Nintendo have released the new Animal Crossing game - but what's it all about?","type":"STY"},{"assetId":"51514293","assetUri":"\/newsround\/51514293","firstCreated":"2020-02-15T10:11:22+00:00","hasShortForm":true,"headline":"Fortnite creator wants an end to loot boxes","language":"en-gb","lastUpdated":"2020-02-15T10:11:22+00:00","media":{"images":{"index":{"110916163":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8D41\/production\/_110916163_llama.jpg","originCode":"cpsprodpb","altText":"Fortnite supply llama","copyrightHolder":"Epic Games","allowSyndication":false}},"index-thumbnail":{"110915335":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/D067\/production\/_110915335_mediaitem110915674.jpg","originCode":"cpsprodpb","altText":"Fortnite","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"One of the top bosses at the gaming company which owns Fortnite says loot boxes are damaging the gaming industry and they need to end.","type":"STY"},{"assetId":"51415843","assetUri":"\/newsround\/51415843","firstCreated":"2020-02-07T13:19:28+00:00","hasShortForm":true,"headline":"Minecraft: Is Netherite better than diamonds?!","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-09T08:02:12+00:00","media":{"images":{"index":{"110810387":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/131DD\/production\/_110810387_netherite.jpg","originCode":"cpsprodpb","altText":"netherite-block-minecraft.","copyrightHolder":"Minecraft\/Microsoft\/Mojang","allowSyndication":false}},"index-thumbnail":{"110810389":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/17FFD\/production\/_110810389_netherite.jpg","originCode":"cpsprodpb","altText":"netherite-block-minecraft.","copyrightHolder":"Minecraft\/Microsoft\/Mojang","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A new update to the Nether in Minecraft has revealed a new material that could be better than diamonds!","type":"STY"},{"assetId":"51368413","assetUri":"\/newsround\/51368413","firstCreated":"2020-02-04T09:29:56+00:00","hasShortForm":true,"headline":"Gareth Bale has launched an e-sports team","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-04T17:49:53+00:00","media":{"images":{"index":{"104279213":{"height":351,"width":624,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7A41\/production\/_104279213_garethbale.jpg","originCode":"cpsprodpb","caption":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","altText":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","copyrightHolder":"Huw Evans picture agency","allowSyndication":true}},"index-thumbnail":{"110777346":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/FB79\/production\/_110777346_garethbale.jpg","originCode":"cpsprodpb","caption":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","altText":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","copyrightHolder":"Huw Evans picture agency","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Wales and Real Madrid player Gareth Bale has set up a new e-sports organisation!","type":"STY"},{"assetId":"51266122","assetUri":"\/newsround\/51266122","byline":{"name":"By Vicki Roberts","persons":[{"name":"Vicki Roberts","function":"Newsround","originCode":"MCS"}],"title":"Newsround"},"firstCreated":"2020-02-04T07:44:40+00:00","hasShortForm":true,"headline":"The Sims turns 20!","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-09T08:11:56+00:00","media":{"images":{"index":{"110706418":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13E34\/production\/_110706418_b1e649d2-0c17-4265-9351-26a41a7f5264.jpg","originCode":"cpsprodpb","caption":"Players could interact with iconic characters like the Goth, Newbie and Pleasant families.","altText":"the-sims-game-characters.","copyrightHolder":"EA\/Maxis\/The Sims","allowSyndication":false}},"index-thumbnail":{"110754826":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/F57D\/production\/_110754826_p0825c1t.jpg","originCode":"cpsprodpb","altText":"sims-at-20-anniversary.","copyrightHolder":"BBC","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Sims is celebrating its 20th anniversary today! But how did it become one of the world's best-selling games? We've been finding out...","type":"STY"},{"assetId":"51132013","assetUri":"\/newsround\/51132013","firstCreated":"2020-01-16T09:33:44+00:00","headline":"Ninja is getting his own Fortnite skin","includeComments":true,"language":"en-gb","lastUpdated":"2020-01-16T09:33:44+00:00","media":{"images":{"index":{"110529733":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/8400\/production\/_110529733_5ec08753-2ca7-49b9-be4b-a4b236c412e2.jpg","originCode":"cpsprodpb","altText":"Ninja-skin-as-shown-on-Fortnite","copyrightHolder":"Epic Games","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"You can get it from midnight on 16 January, but it will only be around for three days!","type":"STY"},{"assetId":"51012498","assetUri":"\/newsround\/51012498","firstCreated":"2020-01-07T06:24:32+00:00","headline":"The classic video games celebrated in stamps","language":"en-gb","lastUpdated":"2020-01-07T06:24:32+00:00","media":{"images":{"index":{"110412035":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/CF1D\/production\/_110412035_tombraider.jpg","originCode":"cpsprodpb","altText":"Tomb Raider","copyrightHolder":"Royal Mail","allowSyndication":false}},"index-thumbnail":{"110416657":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1278D\/production\/_110416657_tombraider.jpg","originCode":"cpsprodpb","altText":"Tomb Raider","copyrightHolder":"Royal Mail","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Royal Mail has issued a set of 12 stamps celebrating the world of gaming with some classic video games from the 1980s and 90s - way before you were born!","type":"PGL"},{"assetId":"50519638","assetUri":"\/newsround\/50519638","firstCreated":"2019-11-22T14:52:32+00:00","hasShortForm":true,"headline":"How Pok茅mon Sword and Shield became fastest-selling games","includeComments":true,"language":"en-gb","lastUpdated":"2019-11-22T14:52:32+00:00","media":{"images":{"index":{"109790884":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/BEA9\/production\/_109790884__107830468_ceea986d-b00c-4618-9417-6195b94a8463.jpg","originCode":"cpsprodpb","caption":"Players can select to be Grookey, Scorbunny or Sobble","altText":"Grookey scorbunny and sobble","copyrightHolder":"Pokemon \/ Nintendo \/ Game Freak","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Pok茅mon Sword and Pok茅mon Shield have become the fastest-selling Nintendo Switch games of all time.","type":"STY"},{"assetId":"50472479","assetUri":"\/newsround\/50472479","firstCreated":"2019-11-19T17:08:55+00:00","hasShortForm":true,"headline":"Google Stadia - is it any good?","includeComments":true,"language":"en-gb","lastUpdated":"2019-11-20T12:25:38+00:00","media":{"images":{"index":{"109748824":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A784\/production\/_109748824_gettyimages-1163037373.jpg","originCode":"cpsprodpb","altText":"google-stadia.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"109748825":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/CE94\/production\/_109748825_gettyimages-1163037373.jpg","originCode":"cpsprodpb","altText":"google-stadia.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Google's just launched Google Stadia - but is it as good as the hype makes out? Check out the pros and cons of the brand new gaming service","type":"STY"},{"assetId":"50435120","assetUri":"\/newsround\/50435120","firstCreated":"2019-11-18T06:26:59+00:00","hasShortForm":true,"headline":"Video game characters inspired by animals","includeComments":true,"language":"en-gb","lastUpdated":"2019-11-18T06:31:20+00:00","media":{"images":{"index":{"109686609":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1622C\/production\/_109686609_sonic1.jpg","originCode":"cpsprodpb","caption":"This prickly speedster is inspired by a UK favourite","altText":"sonic-the-hedgehog.","copyrightHolder":"Getty\/Sega","allowSyndication":false}},"index-thumbnail":{"109687431":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/34A6\/production\/_109687431_sonic1.jpg","originCode":"cpsprodpb","caption":"This prickly speedster is inspired by a UK favourite","altText":"sonic-the-hedgehog.","copyrightHolder":"Getty\/Sega","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Game developers have taken inspiration from the world around them to create these iconic characters.","type":"STY"}],"semanticGroupName":"More stories 4"},{"type":"responsive-cluster","title":"Slice 5 - Bright purple with teal index card","strapline":{"name":"Newsround Learn"},"items":[{"assetId":"51118364","assetUri":"\/newsround\/51118364","firstCreated":"2020-01-15T13:50:19+00:00","headline":"Welcome to Newsround Teachers","language":"en-gb","lastUpdated":"2020-01-15T13:50:19+00:00","media":{"images":{"index":{"110519471":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4453\/production\/_110519471_teacher1_getty.jpg","originCode":"cpsprodpb","altText":"Teacher and children in a school classroom","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"CBBC's Newsround is the only integrated daily news service for kids and we have a wealth of material that could be used in any classroom","type":"STY"},{"assetId":"51836693","assetUri":"\/newsround\/51836693","firstCreated":"2020-03-11T15:22:22+00:00","hasShortForm":true,"headline":"Newsround Worksheet: Wednesday headlines and glossary","language":"en-gb","lastUpdated":"2020-05-06T08:44:18+00:00","media":{"images":{"index":{"111224882":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/70AA\/production\/_111224882_titlepage.png","originCode":"cpsprodpb","altText":"Big Stories and big words","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111224886":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/10CEA\/production\/_111224886_titlepage.png","originCode":"cpsprodpb","altText":"Big Stories and big words","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Here's all you need to know in a few lines.","type":"STY"},{"assetId":"51723696","assetUri":"\/newsround\/51723696","firstCreated":"2020-03-03T12:35:03+00:00","hasShortForm":true,"headline":"Newsround: Our big stories this week","language":"en-gb","lastUpdated":"2020-04-15T15:08:55+00:00","media":{"images":{"index":{"111116437":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/11EF5\/production\/_111116437_p07m5qmk.jpg","originCode":"cpsprodpb","altText":"newsround","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Find out what Newsround has been talking about this week","type":"STY"},{"assetId":"51826298","assetUri":"\/newsround\/51826298","firstCreated":"2020-03-11T06:52:05+00:00","headline":"The girl campaigning for more diversity in books","language":"en-gb","lastUpdated":"2020-03-11T06:52:05+00:00","media":{"images":{"index":{"111219893":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9BD3\/production\/_111219893_youngreporter2.jpg","originCode":"cpsprodpb","altText":"Young-reporter-pic","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111219895":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/E9F3\/production\/_111219895_youngreporter2.jpg","originCode":"cpsprodpb","altText":"Young-reporter-pic","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51826299":{"caption":"The girl who is campaigning for more diversity in books","entityType":"Clip","externalId":"p0867897"}},"primary":{"51826299":{"caption":"The girl who is campaigning for more diversity in books","entityType":"Clip","externalId":"p0867897"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"11-year-old Keziah thinks more needs to be done to promote authors from ethnic minority backgrounds.","type":"MAP"},{"assetId":"51403096","assetUri":"\/newsround\/51403096","firstCreated":"2020-02-06T18:24:31+00:00","headline":"Inside My Head: Taking Control of My Anxiety","language":"en-gb","lastUpdated":"2020-02-07T09:39:52+00:00","media":{"images":{"index":{"110806942":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6180\/production\/_110806942_p082hykf.jpg","originCode":"cpsprodpb","altText":"inside-my-head-taking-control-of-my-anxiety-a-newsround-special","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"110806944":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/AFA0\/production\/_110806944_p082hykf.jpg","originCode":"cpsprodpb","altText":"inside-my-head-taking-control-of-my-anxiety-a-newsround-special","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51403097":{"caption":"Inside My Head: Taking Control of My Anxiety","entityType":"Clip","externalId":"p082hygn"}},"primary":{"51403097":{"caption":"Inside My Head: Taking Control of My Anxiety","entityType":"Clip","externalId":"p082hygn"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"This Newsround special follows 16-year-old mental health campaigner Molly as she learns five different ways to battle her anxiety.","type":"MAP"},{"assetId":"42810179","assetUri":"\/newsround\/42810179","firstCreated":"2018-01-31T07:21:05+00:00","headline":"Guide: Why is plastic a problem?","language":"en-gb","lastUpdated":"2020-03-17T15:15:56+00:00","media":{"images":{"index":{"102207318":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/13DDA\/production\/_102207318_mediaitem102207317.jpg","originCode":"cpsprodpb","altText":"A single discarded plastic water bottle on a sandy beach","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"More than eight million tonnes of plastic goes into the world's oceans each year. That's a lot of plastic which can harm animals and the environment. So what's being done about it?","type":"STY"},{"assetId":"44870690","assetUri":"\/newsround\/44870690","firstCreated":"2018-07-18T10:10:02+00:00","headline":"What's it like to live in Antarctica?","language":"en-gb","lastUpdated":"2018-07-18T10:10:02+00:00","media":{"images":{"index":{"102574714":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/A313\/production\/_102574714_mediaitem102574713.jpg","originCode":"cpsprodpb","altText":"One of the largest Adelie penguin colonies in Antarctica situated in Hope Bay on Trinity Peninsula","copyrightHolder":"PA","allowSyndication":true}},"index-thumbnail":{"102574716":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/F133\/production\/_102574716_mediaitem102574713.jpg","originCode":"cpsprodpb","altText":"One of the largest Adelie penguin colonies in Antarctica situated in Hope Bay on Trinity Peninsula","copyrightHolder":"PA","allowSyndication":true}}},"videos":{"index":{"44870691":{"caption":"What's it like to live in Antarctica?","entityType":"Clip","externalId":"p06f1nxz"}},"primary":{"44870691":{"caption":"What's it like to live in Antarctica?","entityType":"Clip","externalId":"p06f1nxz"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Jess Walkup is a scientist who works in Antarctica. She has given Newsround an exclusive sneak peek at what it's like to live down there!","type":"MAP"},{"assetId":"48352689","assetUri":"\/newsround\/48352689","firstCreated":"2019-05-23T05:44:13+00:00","hasShortForm":true,"headline":"Living with the wall: A Newsround special","includeComments":true,"language":"en-gb","lastUpdated":"2019-06-04T06:04:16+00:00","media":{"images":{"index":{"107074280":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/2037\/production\/_107074280_trumpindex.jpg","originCode":"cpsprodpb","altText":"trump-wall","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"107074282":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6E57\/production\/_107074282_trumpindex.jpg","originCode":"cpsprodpb","altText":"trump-wall","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround has been to the US-Mexico border to find out more about US President Donald Trump's proposed border wall. Watch the series of special reports.","type":"STY"},{"assetId":"25036313","assetUri":"\/newsround\/25036313","firstCreated":"2013-11-21T14:52:40+00:00","headline":"What is anxiety?","language":"en-gb","lastUpdated":"2019-02-15T07:11:23+00:00","media":{"images":{"index":{"92653792":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/7427\/production\/_92653792_anxiety.jpg","originCode":"cpsprodpb","altText":"Cartoon","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"92653771":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/4547\/production\/_92653771_anxiety.jpg","originCode":"cpsprodpb","altText":"Cartoon","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround spoke to mental health charity Mind to find out more about anxiety and what you can do if you're worried you might be experiencing it.","type":"STY"},{"assetId":"49997791","assetUri":"\/newsround\/49997791","firstCreated":"2019-10-10T10:23:16+00:00","hasShortForm":true,"headline":"What is a mental health problem?","language":"en-gb","lastUpdated":"2019-10-10T10:23:16+00:00","media":{"images":{"index":{"95330252":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/6273\/production\/_95330252_whatismentalhealth.jpg","originCode":"cpsprodpb","altText":"mental-health-problem-graphic.","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"If you break your arm or catch a cold, it is more obvious to see that you are poorly. If you have a mental health problem, it can be harder to spot.","type":"STY"},{"assetId":"44503109","assetUri":"\/newsround\/44503109","firstCreated":"2018-06-18T05:48:33+00:00","headline":"Finding My Family - Windrush: A Newsround Special","language":"en-gb","lastUpdated":"2018-06-18T05:48:33+00:00","media":{"images":{"index":{"103645942":{"height":261,"width":464,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/617A\/production\/_103645942_windrush-index.jpg","originCode":"cpsprodpb","altText":"Maya in a blue top, Levi in a red top, both smiling at the camera.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"102189681":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/490A\/production\/_102189681_windrush-index.jpg","originCode":"cpsprodpb","altText":"Maya in a blue top, Levi in a red top, both smiling at the camera.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"44503110":{"caption":"Windrush - Finding My Family: A Newsround Special","entityType":"Clip","externalId":"p06b6wkx"}},"primary":{"44503110":{"caption":"Windrush - Finding My Family: A Newsround Special","entityType":"Clip","externalId":"p06b6wkx"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Finding My Family - Windrush","section":{"name":"Home","id":"101226","uri":"\/newsround\/front_page","urlIdentifier":"\/newsround\/front_page"},"summary":"Maya and Levi head to the Caribbean to find out about where their grandparents grew up, and why they moved to the UK as part of a historic period that changed the face of Britain","type":"MAP"},{"assetId":"40848395","assetUri":"\/newsround\/40848395","firstCreated":"2017-08-08T10:11:06+00:00","headline":"Finding My Family - Partition: A Newsround Special","language":"en-gb","lastUpdated":"2017-08-08T10:11:06+00:00","media":{"images":{"index":{"97237248":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/14931\/production\/_97237248_titleslateweb.jpg","originCode":"cpsprodpb","altText":"Finding My Family graphic","copyrightHolder":"BBC"}},"index-thumbnail":{"97237250":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/1499\/production\/_97237250_titleslateweb.jpg","originCode":"cpsprodpb","altText":"Finding My Family graphic","copyrightHolder":"BBC"}}},"videos":{"index":{"40862255":{"caption":"Watch Finding My Family - Partition: A Newsround Special","entityType":"Clip","externalId":"p05bv3k7"}},"primary":{"40862255":{"caption":"Watch Finding My Family - Partition: A Newsround Special","entityType":"Clip","externalId":"p05bv3k7"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Finding My Family - Partition","section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Sumayyah, Shubhashukla and Kamolpriya are on the mission of their lives to find out what happened to their families during the Partition of India.","type":"MAP"},{"assetId":"36247103","assetUri":"\/newsround\/36247103","firstCreated":"2016-05-10T15:20:25+00:00","headline":"Defending the Rhino: A Newsround Special","language":"en-gb","lastUpdated":"2016-05-11T12:08:37+00:00","media":{"images":{"index":{"89640963":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/9028\/production\/_89640963_nr_rhino_promo_image.jpg","originCode":"cpsprodpb","altText":"Defending the Rhino image","copyrightHolder":"BBC"}},"index-thumbnail":{"89640965":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/DE48\/production\/_89640965_nr_rhino_promo_image.jpg","originCode":"cpsprodpb","altText":"Defending the Rhino image","copyrightHolder":"BBC"}}},"videos":{"index":{"89654544":{"allowOffSiteEmbedding":false,"available":true,"caption":"Watch Defending the Rhino: A Newsround Special","duration":"PT16M13S","entityType":"Version","externalId":"p03tqknp","href":"","image":{"height":360,"width":640,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/12C68\/production\/_89640967_nr_rhino_promo_image.jpg","originCode":"cpsprodpb","altText":"Defending the Rhino image","copyrightHolder":"BBC"},"live":false,"mimeType":"application\/xml"}},"primary":{"89654544":{"allowOffSiteEmbedding":false,"available":true,"caption":"Watch Defending the Rhino: A Newsround Special","duration":"PT16M13S","entityType":"Version","externalId":"p03tqknp","href":"","image":{"height":360,"width":640,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/12C68\/production\/_89640967_nr_rhino_promo_image.jpg","originCode":"cpsprodpb","altText":"Defending the Rhino image","copyrightHolder":"BBC"},"live":false,"mimeType":"application\/xml"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Defending the Rhino","section":{"name":"Animals","id":"101224","uri":"\/newsround\/animals","urlIdentifier":"\/newsround\/animals"},"summary":"Newsround travels thousands of miles to look at the fight that rhino are facing in South Africa for Defending the Rhino: A Newsround Special.","type":"MAP"},{"assetId":"35707765","assetUri":"\/newsround\/35707765","firstCreated":"2016-03-21T16:41:45+00:00","headline":"Is Tech Taking Over?: A Newsround Special","language":"en-gb","lastUpdated":"2016-03-21T16:41:45+00:00","media":{"images":{"index":{"88912978":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/15771\/production\/_88912978_88565600.jpg","originCode":"cpsprodpb","altText":"Is Tech Taking Over?","copyrightHolder":"BBC"}},"index-thumbnail":{"88912980":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/22D9\/production\/_88912980_88565600.jpg","originCode":"cpsprodpb","altText":"Is Tech Taking Over?","copyrightHolder":"BBC"}}},"videos":{"index":{"88876590":{"allowOffSiteEmbedding":false,"available":true,"caption":"Take a look at our new Special.","duration":"PT15M54S","entityType":"Version","externalId":"p03nhwr1","href":"","image":{"height":360,"width":640,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/70F9\/production\/_88912982_88565600.jpg","originCode":"cpsprodpb","altText":"Is Tech Taking Over?","copyrightHolder":"BBC"},"live":false,"mimeType":"application\/xml"}},"primary":{"88876590":{"allowOffSiteEmbedding":false,"available":true,"caption":"Take a look at our new Special.","duration":"PT15M54S","entityType":"Version","externalId":"p03nhwr1","href":"","image":{"height":360,"width":640,"href":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/c.files.bbci.co.uk\/70F9\/production\/_88912982_88565600.jpg","originCode":"cpsprodpb","altText":"Is Tech Taking Over?","copyrightHolder":"BBC"},"live":false,"mimeType":"application\/xml"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Is Tech Taking Over?","section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Technology is awesome, but are we using it too much? Find out more in the latest Newsround Special.","type":"MAP"}],"semanticGroupName":"More stories 5"}],"iStatsCounterName":"newsround.home.page","language":"en-gb","lastUpdated":"2020-05-07T06:51:26+00:00","options":{"allowAdvertising":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The home of news and fun facts for kids. Find out what is going on, with stories, pictures and videos. Try a quiz or one of our free games","title":"CBBC Newsround","type":"IDX","lastPublished":"2020-05-07T06:53:46+00:00","id":"https:\/\/web.archive.org\/web\/20200507070616\/http:\/\/www.bbc.co.uk\/asset\/69a8f5ef-1d3a-b1f9-e050-17ac8045757b\/desktop\/domestic"}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51204456/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51204456":365}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52200989/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52200989":56}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52351553/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52351553":8}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52280887/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52280887":11}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51626137/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51626137":5}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51451737/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51451737":35}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52456575/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52456575":21}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52136993/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52136993":55}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52105524/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52105524":22}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52118980/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52118980":41}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51962151/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51962151":3}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__48352689/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__48352689":4}}); });</script><script>Morph.toInit.registers.push(function() { Morph.register({"view":"bbc-morph-newsround-home-controller","assetUri":"newsround\/home","commentsApiKey":"c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990","isUk":"true","path":"\/newsround","version":"5.3.11","_mrrVersion":"2.0.16"},'u434793513501063'); });</script><script>Morph.init = function() { if (!Morph.initCalled) { Morph.markPerformance('morph-init'); Morph.initCalled = true; requirejs.config({ paths: { 'live-push': '//web.archive.org/web/20200507070616/https://push.api.bbci.co.uk/public/client' } }); } function attempt(fn) { fn(); } if (!Morph.toInitsCalled) { Morph.markPerformance('morph-init-core-deps-complete'); Morph.toInitsCalled = true; } Morph.toInit.bundles.forEach(attempt); Morph.toInit.bundles = []; Morph.markPerformance('morph-init-bundles-complete'); Morph.toInit.payloads.forEach(attempt); Morph.toInit.payloads = []; Morph.markPerformance('morph-init-payloads-complete'); Morph.toInit.registers.forEach(attempt); Morph.toInit.registers = []; Morph.markPerformance('morph-init-registers-complete'); };</script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/morph-vendor/1.0.2/bundle.vendor.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-promise/1.0.6/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-istats/1.3.0/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-react-mvt/3.1.2/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-classnames/1.0.2/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-button/4.0.0/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-istats-internal-link-tracking/2.2.0/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-anchors/2.1.2/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-section-container/4.0.18/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-grandstand/5.4.2/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-cbbc-nav/4.1.0/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-home-controller/5.3.11/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/gel-icon-play/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/gel-icon-image/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/gel-icon-comments/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-debouncer/1.0.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-responsive-image/1.3.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-image-chef-url-transformer/2.1.0/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-bulletin-promo/4.2.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-bump/1.1.0/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-smp/5.0.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-localised-timestamp/3.1.2/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-classnames/1.0.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-gs-timestamp/2.2.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-timestamp/4.1.2/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-promo/5.1.0/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-more-stories/4.1.3/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-top-stories/6.1.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-super-promo/3.1.1/bundle.js"></script><script src="//web.archive.org/web/20200507070616js_/https://m.files.bbci.co.uk/modules/bbc-morph-grandstand/5.4.2/latin/bundle.js"></script><script>if (!Morph.manualInit) { Morph.init(); } /* u434793513501063 */</script><!-- Chartbeat Web Analytics code - start --> <script type="text/javascript"> /** CONFIGURATION START **/ (function() { var noCookies = true; var cookiePrefix = '_chartbeat'; if ("object" === typeof bbccookies && typeof bbccookies.readPolicy == 'function') { noCookies = !bbccookies.readPolicy().performance; } if (noCookies && document.cookie.indexOf(cookiePrefix) !== -1) { //Find and remove cookies whose names begin with '_chartbeat' var cookieSplit = document.cookie.split(';'); var cookieLength = cookieSplit.length; while (cookieLength--) { var cookie = cookieSplit[cookieLength].replace(/^s+|s+$/g, ''); var cookieName = cookie.split('=')[0]; if (cookieName.indexOf(cookiePrefix) === 0) { document.cookie = cookieName + '=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;'; } } } _sf_async_config.noCookies = noCookies; }()); /** CONFIGURATION END **/ (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//web.archive.org/web/20200507070616/https://static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; }()); </script> <!-- Chartbeat Web Analytics code - end --></body></html><!-- FILE ARCHIVED ON 07:06:16 May 07, 2020 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 06:09:18 Dec 14, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.624 exclusion.robots: 0.025 exclusion.robots.policy: 0.015 esindex: 0.01 cdx.remote: 18.12 LoadShardBlock: 294.003 (6) PetaboxLoader3.datanode: 192.419 (7) PetaboxLoader3.resolve: 223.06 (2) load_resource: 173.194 -->